You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If my project is located in a folder containing spaces or in a subfolder of a folder containing spaces, nautilus can not open the folder because it splits up the path.
Example:
project is located at "/home/user/A B/C D/"
as with 1.4.0 nautilus will be started with this command:
nautilus "/home/user/A B/C D/"
which is incorrect since all spaces need to be escaped to
nautilus "/home/user/A\ B/C\ D/"
instead of opening the correct path, nautilus tries to open 4 folders:
/home/user/A
/home/user/B
/home/user/C
/home/user/D
since every non-prefixed path is interpreted as path within ~ (/home/user/)
The text was updated successfully, but these errors were encountered:
Otherwise, Runtime.exec splits the command string at every whitespace before even handing it over to the shell - no amount of wrapping or escaping will help that.
Sorry, forgot to add description
If my project is located in a folder containing spaces or in a subfolder of a folder containing spaces, nautilus can not open the folder because it splits up the path.
Example:
project is located at "/home/user/A B/C D/"
as with 1.4.0 nautilus will be started with this command:
which is incorrect since all spaces need to be escaped to
instead of opening the correct path, nautilus tries to open 4 folders:
/home/user/A
/home/user/B
/home/user/C
/home/user/D
since every non-prefixed path is interpreted as path within ~ (/home/user/)
The text was updated successfully, but these errors were encountered: