diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-03 21:17:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-03 21:17:03 +0800 |
commit | 0313aba77a447558c3b373370b60eb78067e1c4d (patch) | |
tree | eeecce077c2d1e1e38e6a8d9e262c013e421c514 /runtime | |
parent | e837f29ce6c7784340ae2cd866aa239462d3920c (diff) | |
download | rneovim-0313aba77a447558c3b373370b60eb78067e1c4d.tar.gz rneovim-0313aba77a447558c3b373370b60eb78067e1c4d.tar.bz2 rneovim-0313aba77a447558c3b373370b60eb78067e1c4d.zip |
vim-patch:9.0.0031: <mods> of user command does not have correct verbose value (#19215)
vim-patch:9.0.0031: <mods> of user command does not have correct verbose value
Problem: <mods> of user command does not have correct verbose value.
Solution: Use the value from the command modifier. (closes vim/vim#10651)
https://github.com/vim/vim/commit/9359e8a6d99fe2abfcbb9603339f1740d8870cc6
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/map.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt index a4b4f06ffc..7e94167e07 100644 --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -1605,10 +1605,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) | |