diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-11 13:46:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-11 13:46:23 -0400 |
commit | ac5af6051b72ffff1bba3ee704a16b58036e51eb (patch) | |
tree | 25071bd06ef75b33b1d6511ff563834f3e6099db /runtime | |
parent | b9776ff5b757ed051acb0ae5c6a1464cec333698 (diff) | |
parent | 8f03d1e431e37fc60431ded9532cf562e21039e7 (diff) | |
download | rneovim-ac5af6051b72ffff1bba3ee704a16b58036e51eb.tar.gz rneovim-ac5af6051b72ffff1bba3ee704a16b58036e51eb.tar.bz2 rneovim-ac5af6051b72ffff1bba3ee704a16b58036e51eb.zip |
Merge pull request #11318 from janlazo/vim-8.1.1201
vim-patch:8.1.{560,1204,1206}
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/map.txt | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt index 1514f03c55..edec4a8de7 100644 --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -1136,9 +1136,10 @@ scripts. :com[mand] *:com* *:command* List all user-defined commands. When listing commands, - the characters in the first two columns are + the characters in the first columns are: ! Command has the -bang attribute " Command has the -register attribute + | Command has the -bar attribute b Command is local to current buffer (see below for details on attributes) The list can be filtered on command name with @@ -1342,14 +1343,15 @@ It is possible that the special characters in the range like `.`, `$` or `%` which by default correspond to the current line, last line and the whole buffer, relate to arguments, (loaded) buffers, windows or tab pages. -Possible values are: - -addr=lines Range of lines (this is the default) - -addr=arguments Range for arguments - -addr=buffers Range for buffers (also not loaded buffers) - -addr=loaded_buffers Range for loaded buffers - -addr=windows Range for windows - -addr=tabs Range for tab pages - -addr=other other kind of range +Possible values are (second column is the short name used in listing): + -addr=lines Range of lines (this is the default) + -addr=arguments arg Range for arguments + -addr=buffers buf Range for buffers (also not loaded buffers) + -addr=loaded_buffers load Range for loaded buffers + -addr=windows win Range for windows + -addr=tabs tab Range for tab pages + -addr=quickfix qf Range for quickfix entries + -addr=other ? other kind of range Special cases ~ |