From 72d617c482748ae86f0e84bf09383973f69f19f0 Mon Sep 17 00:00:00 2001 From: Reed Esau Date: Sun, 24 Aug 2014 23:54:54 -0600 Subject: [PATCH] Tweaking the conceal defaults Not seeing the concealed markup in normal mode made for a poor experience. --- README.markdown | 2 +- plugin/pencil.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 1dca114..045d71a 100644 --- a/README.markdown +++ b/README.markdown @@ -244,7 +244,7 @@ You can change _pencil’s_ default settings for conceal in your `.vimrc`: ```vim let g:pencil#conceallevel = 3 " 0=disable, 1=onechar, 2=hidechar, 3=hideall -let g:pencil#concealcursor = 'nc' " n=normal, v=visual, i=insert, c=command +let g:pencil#concealcursor = 'c' " n=normal, v=visual, i=insert, c=command ``` Terminal users: consult your terminal’s documentation to configure your diff --git a/plugin/pencil.vim b/plugin/pencil.vim index fef6b3f..c678db0 100644 --- a/plugin/pencil.vim +++ b/plugin/pencil.vim @@ -49,7 +49,7 @@ if !exists('g:pencil#conceallevel') en if !exists('g:pencil#concealcursor') " n=normal, v=visual, i=insert, c=command - let g:pencil#concealcursor = 'nc' + let g:pencil#concealcursor = 'c' en if !exists('g:pencil#softDetectSample')