6 lines
117 B
VimL
6 lines
117 B
VimL
" show a ruler and show the current command in the bottom right
|
|
if has('cmdline_info')
|
|
set ruler
|
|
set showcmd
|
|
endif
|