Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows path: D:\path with spaces
Paste: /d/path\ with\ spaces
Current ConEmu drag and drop from explorer (either the quotes or the backslash escaping needs to go): "/d/path\ with\ spaces"
A 1 year old version of ConEmu does this with drag and drop: "D:\path with spaces"
\\
ConEmu is the current GIT version on Win7 x64.
Task config: E:\cygwin64\Cygwin.bat "-new_console:t:cygwin64" -cur_consoleⓂ️""
The text was updated successfully, but these errors were encountered:
So what is the problem?
Sorry, something went wrong.
The problem is the double quoting: $ ls -l "/d/path\ with\ spaces" ls: cannot access '/d/path\ with\ spaces': No such file or directory
Either of these would work:
$ ls -l /d/path\ with\ spaces total 0
$ ls -l "/d/path with spaces" total 0
gh-1312: Don't autoquote cygwin/msys paths on paste/drop.
e8b6a73
No branches or pull requests
Windows path:
D:\path with spaces
Paste:
/d/path\ with\ spaces
Current ConEmu drag and drop from explorer (either the quotes or the backslash escaping needs to go):
"/d/path\ with\ spaces"
A 1 year old version of ConEmu does this with drag and drop:
"D:\path with spaces"
\\
ConEmu is the current GIT version on Win7 x64.
Task config:Ⓜ️ ""
E:\cygwin64\Cygwin.bat "-new_console:t:cygwin64" -cur_console
The text was updated successfully, but these errors were encountered: