diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-01-16 20:21:23 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-01-16 20:21:23 +0100 |
commit | e2edc2ed4a9a229870b1e1811b0ecf045b84e429 (patch) | |
tree | 52eb7e738360094d273506de9f81427de4ff0913 /src/ex_cmds.h | |
parent | 70250fb4d2ffc2e92db224c6374db418f70691fd (diff) | |
download | vim-git-e2edc2ed4a9a229870b1e1811b0ecf045b84e429.tar.gz |
patch 8.2.2366: when using ":sleep" the cursor is always displayedv8.2.2366
Problem: When using ":sleep" the cursor is always displayed.
Solution: Do not display the cursor when using ":sleep!". (Jeremy Lerner,
closes #7688)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 75bb7fb94..30f522140 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -1365,7 +1365,7 @@ EXCMD(CMD_silent, "silent", ex_wrongmodifier, EX_NEEDARG|EX_EXTRA|EX_BANG|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, ADDR_NONE), EXCMD(CMD_sleep, "sleep", ex_sleep, - EX_RANGE|EX_COUNT|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, + EX_BANG|EX_RANGE|EX_COUNT|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, ADDR_OTHER), EXCMD(CMD_slast, "slast", ex_last, EX_EXTRA|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |