diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2018-08-10 19:01:17 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-08-10 19:01:17 +0200 |
commit | a5e3f4da349e29a5097798d52ecc6655b0d41907 (patch) | |
tree | c175c0ce5014a0086461a754a652540f02dea495 /runtime/ftplugin | |
parent | 2841e89cf179e692b10896a12fe5d9c722632463 (diff) | |
download | rneovim-a5e3f4da349e29a5097798d52ecc6655b0d41907.tar.gz rneovim-a5e3f4da349e29a5097798d52ecc6655b0d41907.tar.bz2 rneovim-a5e3f4da349e29a5097798d52ecc6655b0d41907.zip |
tutor: don't set statusline (#8844)
also, remove unused function tutor#InfoText()
fixes #8842
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/tutor.vim | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/ftplugin/tutor.vim b/runtime/ftplugin/tutor.vim index ec55472b78..30783d9799 100644 --- a/runtime/ftplugin/tutor.vim +++ b/runtime/ftplugin/tutor.vim @@ -25,9 +25,6 @@ setlocal foldmethod=manual setlocal foldexpr=tutor#TutorFolds() setlocal foldlevel=4 -setlocal statusline=%{toupper(expand('%:t:r'))}\ tutorial%= -setlocal statusline+=%{tutor#InfoText()} - " Load metadata if it exists: {{{1 if filereadable(expand('%').'.json') call tutor#LoadMetadata() |