10
10
11
11
Author: Nate Kane <nathanaelkane AT gmail DOT com>
12
12
Version: 1.2
13
- Last Change: 5 Jan 2011
13
+ Last Change: 9 Jan 2011
14
14
15
15
==============================================================================
16
16
CONTENTS *indent-guides-contents*
@@ -40,6 +40,7 @@ Features:~
40
40
* Seems to work on Windows gVim 7.3 (haven't done any extensive tests
41
41
though).
42
42
* Customizable size for indent guides, eg. skinny guides (soft-tabs only).
43
+ * Customizable start indent level.
43
44
44
45
==============================================================================
45
46
2. COMMANDS *indent-guides-commands*
@@ -94,13 +95,13 @@ in an autocmd.
94
95
Use this option to control the percent at which the highlight colors will be
95
96
lightened or darkened.
96
97
97
- Default: 0.05. Values: between 0 and 1 .
98
+ Default: 5 (5%). Values: between 0 and 100 .
98
99
>
99
- let g:indent_guides_color_change_percent = 0.05
100
+ let g:indent_guides_color_change_percent = 5
100
101
<
101
102
102
103
------------------------------------------------------------------------------
103
- *'indent_guides_indent_guide_size '*
104
+ *'indent_guides_guide_size '*
104
105
Use this option to customize the size of the indent guide. By default the
105
106
value is set to 0, which will set the guide size to be the same as the
106
107
| shiftwidth | . Setting this value to be larger than the | shiftwidth | is essentially
@@ -109,11 +110,20 @@ the same as setting it to 0.
109
110
A common use of this setting is to create skinny indent guides, which look
110
111
great with a | shiftwidth | of 4 or more.
111
112
112
- NOTE: This option only works for soft-tabs (spaces) and not for hard-tabs.
113
+ NOTE: This option only works for soft-tabs (spaces) and not hard-tabs.
113
114
114
115
Default: 0. Values: between 0 and | shiftwidth | .
115
116
>
116
- let g:indent_guides_indent_guide_size = 1
117
+ let g:indent_guides_guide_size = 1
118
+ <
119
+
120
+ ------------------------------------------------------------------------------
121
+ *'indent_guides_start_level'*
122
+ Use this option to control which indent level to start showing guides from.
123
+
124
+ Default: 1. Values: between 1 and g:| indent_guides_indent_levels | .
125
+ >
126
+ let g:indent_guides_start_level = 2
117
127
<
118
128
119
129
==============================================================================
@@ -195,6 +205,7 @@ Bug reports, feedback, suggestions etc are welcomed.
195
205
196
206
1.2~
197
207
* Customizable size for indent guides, eg. skinny guides (soft-tabs only).
208
+ * Customizable start indent level.
198
209
* Refactored some internal logic.
199
210
1.1~
200
211
* Added basic support for Terminal Vim. See | indent-guides-terminal-vim | for
0 commit comments