diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-07-10 20:20:06 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-10 20:20:06 +0800 |
| commit | 67b26a39f01cfd4a036070580b8ac6ccecda4a93 (patch) | |
| tree | ac896f5c96fe1b15247bc2770359f36ac59611e2 /src/nvim/normal.c | |
| parent | 5e5374035098807d030f7a3a118acb061a4ed19e (diff) | |
| parent | b3b85186ed7d85b5f2a7c3918c3d391e6abb2cfc (diff) | |
| download | rneovim-67b26a39f01cfd4a036070580b8ac6ccecda4a93.tar.gz rneovim-67b26a39f01cfd4a036070580b8ac6ccecda4a93.tar.bz2 rneovim-67b26a39f01cfd4a036070580b8ac6ccecda4a93.zip | |
Merge pull request #19305 from zeertzjq/vim-8.2.3530
vim-patch:8.2.{3530,3531}: ":buf \{a}" fails while ":edit \{a}" works
Diffstat (limited to 'src/nvim/normal.c')
| -rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 9696130070..0eb8a8f59b 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -4321,7 +4321,7 @@ static void nv_ident(cmdarg_T *cap) ptr = vim_strnsave(ptr, n); if (kp_ex) { // Escape the argument properly for an Ex command - p = (char_u *)vim_strsave_fnameescape((const char *)ptr, false); + p = (char_u *)vim_strsave_fnameescape((const char *)ptr, VSE_NONE); } else { // Escape the argument properly for a shell command p = vim_strsave_shellescape(ptr, true, true); |
