diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-22 20:35:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 20:35:24 -0400 |
commit | d41778c993e95c8b37b3d8e10dacc3060ae489da (patch) | |
tree | 8849117187c0e8d6f82d21e0bf04a674be84c381 /runtime | |
parent | 1df1098b0c54258a41c4f97c9d3131d061a5b206 (diff) | |
parent | e25ebf6b4f1342719b77ced3cc79c113f3dcb41e (diff) | |
download | rneovim-d41778c993e95c8b37b3d8e10dacc3060ae489da.tar.gz rneovim-d41778c993e95c8b37b3d8e10dacc3060ae489da.tar.bz2 rneovim-d41778c993e95c8b37b3d8e10dacc3060ae489da.zip |
Merge pull request #14178 from andymass/vim-8.2.0088
[RFC] vim-patch 8.2.0088: insufficient tests for tags...
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/tagsrch.txt | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/runtime/doc/tagsrch.txt b/runtime/doc/tagsrch.txt index a8848b103e..7d09ca86ac 100644 --- a/runtime/doc/tagsrch.txt +++ b/runtime/doc/tagsrch.txt @@ -337,11 +337,11 @@ the same as above, with a "p" prepended. A static tag is a tag that is defined for a specific file. In a C program this could be a static function. -In Vi jumping to a tag sets the current search pattern. This means that -the "n" command after jumping to a tag does not search for the same pattern -that it did before jumping to the tag. Vim does not do this as we consider it -to be a bug. You can still find the tag search pattern in the search history. -If you really want the old Vi behavior, set the 't' flag in 'cpoptions'. +In Vi jumping to a tag sets the current search pattern. This means that the +"n" command after jumping to a tag does not search for the same pattern that +it did before jumping to the tag. Vim does not do this as we consider it to +be a bug. If you really want the old Vi behavior, set the 't' flag in +'cpoptions'. *tag-binary-search* Vim uses binary searching in the tags file to find the desired tag quickly @@ -419,8 +419,7 @@ would otherwise go unnoticed. Example: > In Vi the ":tag" command sets the last search pattern when the tag is searched for. In Vim this is not done, the previous search pattern is still remembered, -unless the 't' flag is present in 'cpoptions'. The search pattern is always -put in the search history, so you can modify it if searching fails. +unless the 't' flag is present in 'cpoptions'. *tags-option* The 'tags' option is a list of file names. Each of these files is searched |