1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

fix style issues as per vint

This commit is contained in:
jdhao
2020-09-24 23:01:10 +08:00
parent b0d5b9765e
commit 00cbed4cdc
7 changed files with 16 additions and 12 deletions

View File

@@ -79,9 +79,9 @@ endfunction
function! utils#ToggleCursorCol() abort
if &cursorcolumn
set nocursorcolumn
echo "cursorcolumn: OFF"
echo 'cursorcolumn: OFF'
else
set cursorcolumn
echo "cursorcolumn: ON"
echo 'cursorcolumn: ON'
endif
endfunction