aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChristian Clason <christian.clason@uni-due.de>2021-09-12 10:55:35 +0200
committerGitHub <noreply@github.com>2021-09-12 10:55:35 +0200
commit4a7a99ff31557bea7da09466547ff2dc1e337729 (patch)
treeef233bd9f83e09e245f91c741c5b1819ffab6cdd /runtime
parentcd4ec810e9f60024518405f50991d34a2c5af325 (diff)
parentd3c6f1ebbb528dd526daa6b3cbf3007d65f2af17 (diff)
downloadrneovim-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.txt4
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