diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-06-18 19:44:46 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-06-18 23:59:39 +0200 |
| commit | 2791fd4e1722fd45fa0f4261879046e8d397645a (patch) | |
| tree | 05cffe3e28cf3af00a68add133b1999c11a0c691 /runtime/doc | |
| parent | 4e8ec4900eb9fdc2a864e65d3de73c51e963abd0 (diff) | |
| download | rneovim-2791fd4e1722fd45fa0f4261879046e8d397645a.tar.gz rneovim-2791fd4e1722fd45fa0f4261879046e8d397645a.tar.bz2 rneovim-2791fd4e1722fd45fa0f4261879046e8d397645a.zip | |
vim-patch:26de90c: runtime(nohlsearch): include the the simple nohlsearch package
fixes: vim/vim#15039
closes: vim/vim#15042
https://github.com/vim/vim/commit/26de90c6312cf16d7a4f2b6942befb4e1f14b960
Co-authored-by: Maxim Kim <habamax@gmail.com>
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/pattern.txt | 6 | ||||
| -rw-r--r-- | runtime/doc/usr_05.txt | 15 |
2 files changed, 20 insertions, 1 deletions
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt index 67ef769203..8ec02276cc 100644 --- a/runtime/doc/pattern.txt +++ b/runtime/doc/pattern.txt @@ -141,13 +141,17 @@ CTRL-C Interrupt current (search) command. executing autocommands |autocmd-searchpat|. Same thing for when invoking a user function. + While typing the search pattern the current match will be shown if the 'incsearch' option is on. Remember that you still have to finish the search command with <CR> to actually position the cursor at the displayed match. Or use <Esc> to abandon the search. + *nohlsearch-auto* All matches for the last used search pattern will be highlighted if you set -the 'hlsearch' option. This can be suspended with the |:nohlsearch| command. +the 'hlsearch' option. This can be suspended with the |:nohlsearch| command +or auto suspended with nohlsearch plugin. See |nohlsearch-install|. + When 'shortmess' does not include the "S" flag, Vim will automatically show an index, on which the cursor is. This can look like this: > diff --git a/runtime/doc/usr_05.txt b/runtime/doc/usr_05.txt index 076a50c582..f6324a12d5 100644 --- a/runtime/doc/usr_05.txt +++ b/runtime/doc/usr_05.txt @@ -234,6 +234,21 @@ an archive or as a repository. For an archive you can follow these steps: Here "fancytext" is the name of the package, it can be anything else. + +Adding nohlsearch package *nohlsearch-install* + +Load the plugin with this command: > + packadd nohlsearch +< +Automatically execute |:nohlsearch| after 'updatetime' or getting into |Insert| mode. +Thus assuming default updatetime, hlsearch would be suspended/turned off after +4 seconds of idle time. + +To disable the effect of the plugin after is has been loaded: > + au! nohlsearch +< + + More information about packages can be found here: |packages|. ============================================================================== |