diff options
author | Christian Clason <christian.clason@uni-due.de> | 2021-09-12 10:55:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-12 10:55:35 +0200 |
commit | 4a7a99ff31557bea7da09466547ff2dc1e337729 (patch) | |
tree | ef233bd9f83e09e245f91c741c5b1819ffab6cdd /runtime | |
parent | cd4ec810e9f60024518405f50991d34a2c5af325 (diff) | |
parent | d3c6f1ebbb528dd526daa6b3cbf3007d65f2af17 (diff) | |
download | rneovim-4a7a99ff31557bea7da09466547ff2dc1e337729.tar.gz rneovim-4a7a99ff31557bea7da09466547ff2dc1e337729.tar.bz2 rneovim-4a7a99ff31557bea7da09466547ff2dc1e337729.zip |
Merge pull request #15550 from jasonccox/vim-8.2.3385
vim-patch:8.2.3385,8.2.3393
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index def873a1da..a83f5f52b9 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -8330,6 +8330,10 @@ shellescape({string} [, {special}]) *shellescape()* - The <NL> character is escaped (twice if {special} is a ||non-zero-arg|). + If 'shell' contains "fish" in the tail, the "\" character will + be escaped because in fish it is used as an escape character + inside single quotes. + Example of use with a |:!| command: > :exe '!dir ' . shellescape(expand('<cfile>'), 1) < This results in a directory listing for the file under the |