diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-06-19 16:28:22 +0100 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-06-19 16:58:50 +0100 |
commit | b5c0ade43790cf18f6a54858ddad30d8d9667cf9 (patch) | |
tree | 794ff803c5a308cb4ff5afa8c5c2bbb576565208 | |
parent | 7d025f2e8e600b42e17c1885992c3b39dad9b67d (diff) | |
download | rneovim-b5c0ade43790cf18f6a54858ddad30d8d9667cf9.tar.gz rneovim-b5c0ade43790cf18f6a54858ddad30d8d9667cf9.tar.bz2 rneovim-b5c0ade43790cf18f6a54858ddad30d8d9667cf9.zip |
fix(doc): :sleep! does not hide cursor
:sleep is the same as :sleep! in the port of v8.2.2366
-rw-r--r-- | runtime/doc/index.txt | 2 | ||||
-rw-r--r-- | runtime/doc/various.txt | 3 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt index c4c838c574..20a21b1b2c 100644 --- a/runtime/doc/index.txt +++ b/runtime/doc/index.txt @@ -1547,8 +1547,6 @@ tag command action ~ |:sign| :sig[n] manipulate signs |:silent| :sil[ent] run a command silently |:sleep| :sl[eep] do nothing for a few seconds -|:sleep!| :sl[eep]! do nothing for a few seconds, without the - cursor visible |:slast| :sla[st] split window and go to last file in the argument list |:smagic| :sm[agic] :substitute with 'magic' diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt index d5c07d9622..ec91b6e29a 100644 --- a/runtime/doc/various.txt +++ b/runtime/doc/various.txt @@ -506,7 +506,8 @@ gO Show a filetype-specific, navigable "outline" of the Queued messages are processed during the sleep. *:sl!* *:sleep!* -:[N]sl[eep]! [N] [m] Same as above, but hide the cursor. +:[N]sl[eep]! [N] [m] Same as above. Unlike Vim, it does not hide the + cursor. |vim-differences| ============================================================================== 2. Using Vim like less or more *less* diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 0a006a8aa4..27c4b82aca 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -424,6 +424,7 @@ Commands: :promptfind :promptrepl :shell + :sleep! (does not hide the cursor; same as :sleep) :smile :tearoff |