From e5634c01fcd1fca4663a38b4cbc62efa20450045 Mon Sep 17 00:00:00 2001 From: Nate Kane Date: Thu, 27 Jun 2013 19:53:01 +1000 Subject: [PATCH] Update the help file for the g:indent_guides_default_mapping option --- doc/indent_guides.txt | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/doc/indent_guides.txt b/doc/indent_guides.txt index 4df247b..71080b8 100644 --- a/doc/indent_guides.txt +++ b/doc/indent_guides.txt @@ -170,6 +170,15 @@ Default: ['help']. Values: list of strings. let g:indent_guides_exclude_filetypes = ['help', 'nerdtree'] < +------------------------------------------------------------------------------ + *'indent_guides_default_mapping'* +Use this option to control whether the default mapping (ig) gets set. + +Default: 1. Values: 0 or 1. +> + let g:indent_guides_default_mapping = 0 +< + ============================================================================== 4. MAPPINGS *indent-guides-mappings* @@ -179,14 +188,6 @@ map it to other keys. For example: :nmap ig IndentGuidesToggle < -The plugin will not provide the default mapping if either: - * You already have something mapped to IndentGuidesToggle. - * You are already using the ig key sequence. - * You set to 0 the variable g:indent_guides_default_mapping: -> - let g:indent_guides_default_mapping=0 -< - You can also map some other commands that are not mapped by default. For example: > @@ -257,6 +258,8 @@ Bug reports, feedback, suggestions etc are welcomed. 1.8 (pending release)~ * Added option g:|indent_guides_soft_pattern| to control the pattern for soft indentation (thanks @sergey-vlasov). + * Added option g:|indent_guides_default_mapping| to control whether the + default mapping (ig) gets set (thanks @suy). 1.7~ * Added way to override the default mapping (thanks xuhdev).