Skip to content

Commit 364b1c5

Browse files
committed
Merge pull request spf13#545 from julianduque/3.0
Fix no_conceal on youcompleteme
2 parents 7254af9 + 47d7952 commit 364b1c5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.vimrc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,8 +600,10 @@
600600
endif
601601

602602
" For snippet_complete marker.
603-
if has('conceal')
604-
set conceallevel=2 concealcursor=i
603+
if !exists("g:spf13_no_conceal")
604+
if has('conceal')
605+
set conceallevel=2 concealcursor=i
606+
endif
605607
endif
606608

607609
" Disable the neosnippet preview candidate window

0 commit comments

Comments
 (0)