mirror of
https://github.com/vim/vim.git
synced 2025-08-26 20:03:41 -04:00
Improve formatting and naming consistency of the syntax tests. closes: #17850 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
14 lines
338 B
VimL
14 lines
338 B
VimL
" Vim :sleep command
|
|
|
|
|
|
sleep " sleep for one second
|
|
5 sleep " sleep for five seconds
|
|
sleep 100m " sleep for 100 milliseconds
|
|
100 sleep m " sleep for 100 milliseconds
|
|
|
|
sleep! " sleep for one second
|
|
5 sleep! " sleep for five seconds
|
|
sleep! 100m " sleep for 100 milliseconds
|
|
100 sleep! m " sleep for 100 milliseconds
|
|
|