summaryrefslogtreecommitdiffstats
path: root/runtime/doc/map.txt
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-07-03 13:16:09 +0100
committerBram Moolenaar <Bram@vim.org>2022-07-03 13:16:09 +0100
commit9359e8a6d99fe2abfcbb9603339f1740d8870cc6 (patch)
tree8d702c795b0d2ff2180731c48ded4348deb9cc97 /runtime/doc/map.txt
parent22e7e867e224596bd758260e4278ce6239c35ba5 (diff)
patch 9.0.0031: <cmod> of user command does not have correct verbose valuev9.0.0031
Problem: <cmod> of user command does not have correct verbose value. Solution: Use the value from the command modifier. (closes #10651)
Diffstat (limited to 'runtime/doc/map.txt')
-rw-r--r--runtime/doc/map.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt
index ee9a61309f..5efc5076f8 100644
--- a/runtime/doc/map.txt
+++ b/runtime/doc/map.txt
@@ -1721,10 +1721,10 @@ The valid escape sequences are
nothing. Supported modifiers are |:aboveleft|, |:belowright|,
|:botright|, |:browse|, |:confirm|, |:hide|, |:keepalt|,
|:keepjumps|, |:keepmarks|, |:keeppatterns|, |:leftabove|,
- |:lockmarks|, |:noswapfile| |:rightbelow|, |:silent|, |:tab|,
- |:topleft|, |:verbose|, and |:vertical|.
- Note that these are not yet supported: |:noautocmd|,
- |:sandbox| and |:unsilent|.
+ |:lockmarks|, |:noautocmd|, |:noswapfile| |:rightbelow|,
+ |:sandbox|, |:silent|, |:tab|, |:topleft|, |:unsilent|,
+ |:verbose|, and |:vertical|.
+ Note that |:filter| is not supported.
Examples: >
command! -nargs=+ -complete=file MyEdit
\ for f in expand(<q-args>, 0, 1) |