diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-04-12 20:36:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-04-12 20:36:43 +0200 |
commit | 527dec3f94c72096bf6baf4bb71f1a21dc7df89c (patch) | |
tree | 73b09fd538909a1c1aa0f5c990940c9733f61463 /src/vimtutor | |
parent | ee5b94a8ecbaeafa11c7c7c8cf7bef765fbea912 (diff) | |
download | vim-git-527dec3f94c72096bf6baf4bb71f1a21dc7df89c.tar.gz |
patch 8.0.1703: in the tutor 'showcmd' is not setv8.0.1703
Problem: In the tutor 'showcmd' is not set.
Solution: Set 'showcmd' in the vimtutor script. (Ken Takata, closes #2792)
Diffstat (limited to 'src/vimtutor')
-rwxr-xr-x | src/vimtutor | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vimtutor b/src/vimtutor index e53201df5..1e8769b25 100755 --- a/src/vimtutor +++ b/src/vimtutor @@ -70,5 +70,5 @@ fi # The script tutor.vim tells Vim which file to copy $VIM -f -u NONE -c 'so $VIMRUNTIME/tutor/tutor.vim' -# Start vim without any .vimrc, set 'nocompatible' -$VIM -f -u NONE -c "set nocp" $TUTORCOPY +# Start vim without any .vimrc, set 'nocompatible' and 'showcmd' +$VIM -f -u NONE -c "set nocp showcmd" $TUTORCOPY |