diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-11-28 20:27:19 +0100 |
---|---|---|
committer | Felipe Morales <hel.sheep@gmail.com> | 2015-11-28 20:27:19 +0100 |
commit | a03af86cc28d9e755f5941b5dfaf54d003a1ad97 (patch) | |
tree | fa13587a23291af87beb50c9c52ca4d7c7ad0f75 | |
parent | 7353e1d62baeaaeec38ae156cc2ea6d722154e7c (diff) | |
parent | 4af822fa0933c1da5c8ee79ac43814b526a5cee3 (diff) | |
download | rneovim-a03af86cc28d9e755f5941b5dfaf54d003a1ad97.tar.gz rneovim-a03af86cc28d9e755f5941b5dfaf54d003a1ad97.tar.bz2 rneovim-a03af86cc28d9e755f5941b5dfaf54d003a1ad97.zip |
Merge pull request #3755 from neovim/fmoralesc-patch-1
tutor: Fix mistaken option name
-rw-r--r-- | runtime/autoload/tutor.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/tutor.vim b/runtime/autoload/tutor.vim index 5182c53f35..4d5a10a97c 100644 --- a/runtime/autoload/tutor.vim +++ b/runtime/autoload/tutor.vim @@ -2,7 +2,7 @@ " Setup: {{{1 function! tutor#SetupVim() - if &col < 90 + if &columns < 90 set columns=90 endif if !exists('g:did_load_ftplugin') || g:did_load_ftplugin != 1 |