Bang/Exclamation mark (!) not escaped when pasting paths #1579
Labels
Projects
Comments
It seems to be enough to add ! to the else part in posixSpec (ConEmuApp.cpp line 649) |
Almost. It should be
|
Escaping ! in quoted string doesn't work in mingw/bash
So autoQuoting should be done with single quotes to avoid But I found now way to enable pasting/d'n'd-ing quoted paths, thus I was unable to test it. |
The most recent one
In what version in actually does work? |
Reading about quoting: http://wiki.bash-hackers.org/syntax/quoting Consider following changes:
|
Maximus5
added a commit
that referenced
this issue
May 27, 2018
…n `!` mark). * if path contains special characters, strong quoting (single-quote) is used * it's still possible to paste without quotation via GuiMacro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Versions
ConEmu build: 180506 x32/x64
OS version: Windows 7 x64
Used shell version: msys2
Problem description
Bangs in paths are not escaped on Windows to POSIX conversion (drag-and-drop, pasete, ...)
Steps to reproduce
A
B
Actual results
/c/folder!bang
(missing \ before !)
Expected results
/c/folder\!bang
The text was updated successfully, but these errors were encountered: