diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-03-16 16:38:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-16 16:38:40 +0800 |
commit | 848e64322a3246f351a44fc1955eecc5ea163c72 (patch) | |
tree | e6c3e0608ccdd0fdaa91129b3a1b7b99f23d4040 | |
parent | 9c2fdfe6e7937e622a121dce42fde5aa602911a4 (diff) | |
download | rneovim-848e64322a3246f351a44fc1955eecc5ea163c72.tar.gz rneovim-848e64322a3246f351a44fc1955eecc5ea163c72.tar.bz2 rneovim-848e64322a3246f351a44fc1955eecc5ea163c72.zip |
vim-patch:989faa4fce65 (#27880)
runtime(doc): make :h tag-! more consistent (vim/vim#14208)
- Use "on" and "off" for 'winfixbuf' option values.
- Retab the table.
https://github.com/vim/vim/commit/989faa4fce65a48d95fd8c9ae402672d70b8de7f
-rw-r--r-- | runtime/doc/tagsrch.txt | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/runtime/doc/tagsrch.txt b/runtime/doc/tagsrch.txt index ac2bf9337b..6e53b5ebae 100644 --- a/runtime/doc/tagsrch.txt +++ b/runtime/doc/tagsrch.txt @@ -400,23 +400,23 @@ the pattern. *tag-!* If the tag is in the current file this will always work. Otherwise the performed actions depend on whether the current file was changed, whether a ! -is added to the command and on the 'autowrite' option: +is added to the command and on the 'autowrite' and 'winfixbuf' options: - tag in file autowrite ~ -current file changed ! winfixbuf option action ~ + tag in file winfixbuf autowrite ~ +current file changed ! option option action ~ ----------------------------------------------------------------------------- - yes x x no x goto tag - no no x no x read other file, goto tag - no yes yes no x abandon current file, + yes x x off x goto tag + no no x off x read other file, goto tag + no yes yes off x abandon current file, read other file, goto tag - no yes no no on write current file, + no yes no off on write current file, read other file, goto tag - no yes no no off fail - yes x yes x x goto tag - no no no yes x fail - no yes no yes x fail - no yes no yes on fail - no yes no yes off fail + no yes no off off fail + yes x yes x x goto tag + no no no on x fail + no yes no on x fail + no yes no on on fail + no yes no on off fail ----------------------------------------------------------------------------- - If the tag is in the current file, the command will always work. |