Signed-off-by: Christian Brabandt <cb@256bit.org>
-*various.txt* For Vim version 9.2. Last change: 2026 Apr 27
+*various.txt* For Vim version 9.2. Last change: 2026 May 21
VIM REFERENCE MANUAL by Bram Moolenaar
name does not contain a single quote: >
:!ls '%'
< This should always work, but it's more typing: >
- :exe "!ls " .. shellescape(expand("%"))
+ :exe "!ls " .. shellescape(expand("%"),1)
< To get a literal "%" or "#" prepend it with a
backslash. For example, to list all files starting
with "%": >