summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorMaxim Kim <habamax@gmail.com>2024-06-19 19:42:47 +0200
committerChristian Brabandt <cb@256bit.org>2024-06-19 19:42:47 +0200
commitaeca7176f3b7bdc2d698938062f6cad802fea783 (patch)
tree2100aeb9f57f8ac39385f9934da01c671e7aced4 /runtime/doc
parentfbc37f138a5d70f1b212b9de9959a0816481edcf (diff)
runtime(nohlsearch): simplify mapping
Use <cmd> instead of <expr> with execute(...)[-1] closes: #15047 Signed-off-by: Maxim Kim <habamax@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/usr_05.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/usr_05.txt b/runtime/doc/usr_05.txt
index 5065e4583c..d9222594ce 100644
--- a/runtime/doc/usr_05.txt
+++ b/runtime/doc/usr_05.txt
@@ -1,4 +1,4 @@
-*usr_05.txt* For Vim version 9.1. Last change: 2024 Jun 18
+*usr_05.txt* For Vim version 9.1. Last change: 2024 Jun 19
VIM USER MANUAL - by Bram Moolenaar
@@ -459,7 +459,7 @@ Automatically execute |:nohlsearch| after 'updatetime' or getting into |Insert|
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: >
+To disable the effect of the plugin after it has been loaded: >
au! nohlsearch
<