Add flag for cursorline

This commit is contained in:
alexbel
2013-04-22 17:05:45 -04:00
parent 3d30f26c33
commit ed7387876f
2 changed files with 9 additions and 1 deletions

View File

@@ -56,8 +56,11 @@ if !exists("g:indentLine_maxLines")
let g:indentLine_maxLines = 3000 let g:indentLine_maxLines = 3000
endif endif
if !exists("g:indentLine_noConcealCursor")
set concealcursor=inc
endif
set conceallevel=1 set conceallevel=1
set concealcursor=inc
"{{{1 function! <SID>InitColor() "{{{1 function! <SID>InitColor()
function! <SID>InitColor() function! <SID>InitColor()

View File

@@ -90,6 +90,11 @@ g:indentLine_maxLines *g:indentLine_maxLines*
the performance better. the performance better.
Default value is 3000. Default value is 3000.
g:indentLine_noConcealCursor *g:indentLine_noConcealCursor*
This variable toggles cursor lines behavior. If variable
exists, then cursorline will be above conceal chars.
Default value is not set.
============================================================================== ==============================================================================
COMMANDS *indentLine-commands* COMMANDS *indentLine-commands*