# HG changeset patch # User Christian Brabandt # Date 1523558707 -7200 # Node ID 5eac31544dd0f500ddf9b5ef6410443e803d307c # Parent 1bde4f0fb3667014f62a5ea6df8298437f8cba3a patch 8.0.1703: in the tutor 'showcmd' is not set commit https://github.com/vim/vim/commit/527dec3f94c72096bf6baf4bb71f1a21dc7df89c Author: Bram Moolenaar Date: Thu Apr 12 20:36:43 2018 +0200 patch 8.0.1703: in the tutor 'showcmd' is not set Problem: In the tutor 'showcmd' is not set. Solution: Set 'showcmd' in the vimtutor script. (Ken Takata, closes https://github.com/vim/vim/issues/2792) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1703, +/**/ 1702, /**/ 1701, diff --git a/src/vimtutor b/src/vimtutor --- 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