From ed7387876f108d59d51e6f4b3a757fcf1523055a Mon Sep 17 00:00:00 2001 From: alexbel Date: Mon, 22 Apr 2013 17:05:45 -0400 Subject: [PATCH] Add flag for cursorline --- after/plugin/indentLine.vim | 5 ++++- doc/indentLine.txt | 5 +++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/after/plugin/indentLine.vim b/after/plugin/indentLine.vim index 9a53e9c..eab4cec 100644 --- a/after/plugin/indentLine.vim +++ b/after/plugin/indentLine.vim @@ -56,8 +56,11 @@ if !exists("g:indentLine_maxLines") let g:indentLine_maxLines = 3000 endif +if !exists("g:indentLine_noConcealCursor") + set concealcursor=inc +endif + set conceallevel=1 -set concealcursor=inc "{{{1 function! InitColor() function! InitColor() diff --git a/doc/indentLine.txt b/doc/indentLine.txt index 0dcac7e..0396707 100644 --- a/doc/indentLine.txt +++ b/doc/indentLine.txt @@ -90,6 +90,11 @@ g:indentLine_maxLines *g:indentLine_maxLines* the performance better. 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*