remove automatic line numbers in command mode

This commit is contained in:
ManjaroOne666 2019-09-15 21:18:57 +01:00
parent 0e82935b84
commit d6ee08daea
1 changed files with 7 additions and 7 deletions

14
vimrc
View File

@ -527,13 +527,13 @@ iabbrev ct'' content-type: '';
" }}}
" line numbering {{{
if exists('##CmdlineEnter')
augroup linenumbering
autocmd!
autocmd CmdlineEnter * :redraw | :set number
autocmd CmdlineLeave * :set nonumber
augroup END
endif
" if exists('##CmdlineEnter')
" augroup linenumbering
" autocmd!
" autocmd CmdlineEnter * :redraw | :set number
" autocmd CmdlineLeave * :set nonumber
" augroup END
" endif
" }}}
" Automatically reload .vimrc if changed {{{