You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+26-1Lines changed: 26 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,8 @@ each indent level has a distinct character.
71
71
72
72
This plugin enables the Vim `conceal` feature which automatically hides stretches of text based on syntax highlighting. This setting will apply to all syntax items.
73
73
74
-
For example, users utilizing the built in json.vim syntax file will no longer see quotation marks in their JSON files.
74
+
For example, users utilizing the built in json.vim syntax file will no longer see quotation marks in their JSON files
75
+
(see below how to disable conceal for JSON without disabling indentLine).
75
76
76
77
indentLine will overwrite your "concealcursor" and "conceallevel" with default value:
77
78
@@ -90,6 +91,30 @@ let g:indentLine_setConceal = 0
90
91
See the [VIM Reference Manual](http://vimdoc.sourceforge.net/htmldoc/version7.html#new-conceal) for more information on the `conceal` feature.
91
92
92
93
94
+
**Disabling conceal for JSON and Markdown without disabling indentLine plugin**
95
+
96
+
Even though this plugin requires conceal to be enabled for it to work, it is
97
+
possible to disable conceal for JSON and Markdown files and still get the
98
+
indentLine plugin to show indent lines for those files.
0 commit comments