9
9
10
10
11
11
Author: Nate Kane <nathanaelkane AT gmail DOT com>
12
- Version: 1.1
13
- Last Change: 29 Dec 2010
12
+ Version: 1.2
13
+ Last Change: 5 Jan 2011
14
14
15
15
==============================================================================
16
16
CONTENTS *indent-guides-contents*
@@ -39,6 +39,7 @@ Features:~
39
39
* Full support for gVim and basic support for Terminal Vim.
40
40
* Seems to work on Windows gVim 7.3 (haven't done any extensive tests
41
41
though).
42
+ * Customizable size for indent guides, eg. skinny guides (soft-tabs only).
42
43
43
44
==============================================================================
44
45
2. COMMANDS *indent-guides-commands*
@@ -63,6 +64,7 @@ Features:~
63
64
------------------------------------------------------------------------------
64
65
*'indent_guides_indent_levels'*
65
66
Use this option to control how many indent levels to display guides for.
67
+
66
68
Default: 30. Values: integer.
67
69
>
68
70
let g:indent_guides_indent_levels = 30
@@ -73,6 +75,7 @@ Default: 30. Values: integer.
73
75
Use this option to control whether or not the plugin automatically calculates
74
76
the highlight colors. Will use the current colorscheme's background color as a
75
77
base color.
78
+
76
79
Default: 1. Values: 0 or 1.
77
80
>
78
81
let g:indent_guides_auto_colors = 1
@@ -90,11 +93,29 @@ in an autocmd.
90
93
*'indent_guides_color_change_percent'*
91
94
Use this option to control the percent at which the highlight colors will be
92
95
lightened or darkened.
96
+
93
97
Default: 0.05. Values: between 0 and 1.
94
98
>
95
99
let g:indent_guides_color_change_percent = 0.05
96
100
<
97
101
102
+ ------------------------------------------------------------------------------
103
+ *'indent_guides_indent_guide_size'*
104
+ Use this option to customize the size of the indent guide. By default the
105
+ value is set to 0, which will set the guide size to be the same as the
106
+ | shiftwidth | . Setting this value to be larger than the | shiftwidth | is essentially
107
+ the same as setting it to 0.
108
+
109
+ A common use of this setting is to create skinny indent guides, which look
110
+ great with a | shiftwidth | of 4 or more.
111
+
112
+ NOTE: This option only works for soft-tabs (spaces) and not for hard-tabs.
113
+
114
+ Default: 0. Values: between 0 and | shiftwidth | .
115
+ >
116
+ let g:indent_guides_indent_guide_size = 1
117
+ <
118
+
98
119
==============================================================================
99
120
4. MAPPINGS *indent-guides-mappings*
100
121
@@ -172,6 +193,9 @@ Bug reports, feedback, suggestions etc are welcomed.
172
193
==============================================================================
173
194
7. CHANGELOG *indent-guides-changelog*
174
195
196
+ 1.2~
197
+ * Customizable size for indent guides, eg. skinny guides (soft-tabs only).
198
+ * Refactored some internal logic.
175
199
1.1~
176
200
* Added basic support for Terminal Vim. See | indent-guides-terminal-vim | for
177
201
more information.
0 commit comments