nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 39fc42d1cf0172de1cfad75c83bb21636f53b0a9
parent 7f6603ea4ab08275f4abc84c3048e0a789f7c05d
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Sat, 27 Dec 2008 11:34:02 +1300

change the H mapping (toggle hidden files) to I

Diffstat:
Mdoc/NERD_tree.txt | 11+++++------
Mplugin/NERD_tree.vim | 2+-
2 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/doc/NERD_tree.txt b/doc/NERD_tree.txt
@@ -231,7 +231,7 @@ R.......Recursively refresh the current root.....................|NERDTree-R|
 m.......Display the filesystem menu..............................|NERDTree-m|
 cd......Change the CWD to the dir of the selected node...........|NERDTree-cd|
 
-H.......Toggle whether hidden files displayed....................|NERDTree-H|
+I.......Toggle whether hidden files displayed....................|NERDTree-I|
 f.......Toggle whether the file filters are used.................|NERDTree-f|
 F.......Toggle whether files are displayed.......................|NERDTree-F|
 B.......Toggle whether the bookmark table is displayed...........|NERDTree-B|
@@ -477,13 +477,12 @@ Applies to: files and directories.
 Display the filesystem menu. See |NERDTreeFilesysMenu| for details.
 
 ------------------------------------------------------------------------------
-                                                                  *NERDTree-H*
-Default key: H
+                                                                  *NERDTree-I*
+Default key: I
 Map option: NERDTreeMapToggleHidden
 Applies to: no restrictions.
 
-Toggles whether hidden files are displayed. Hidden files are any
-file/directory that starts with a "."
+Toggles whether hidden files (i.e. "dot files") are displayed.
 
 ------------------------------------------------------------------------------
                                                                   *NERDTree-f*
@@ -823,7 +822,7 @@ Values: 0 or 1.
 Default: 0.
 
 This option tells vim whether to display hidden files by default. This option
-can be dynamically toggled, per tree, with the |NERDTree-H| mapping.  Use one
+can be dynamically toggled, per tree, with the |NERDTree-I| mapping.  Use one
 of the follow lines to set this option: >
     let NERDTreeShowHidden=0
     let NERDTreeShowHidden=1
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -124,7 +124,7 @@ call s:initVariable("g:NERDTreeMapRefreshRoot", "R")
 call s:initVariable("g:NERDTreeMapToggleBookmarks", "B")
 call s:initVariable("g:NERDTreeMapToggleFiles", "F")
 call s:initVariable("g:NERDTreeMapToggleFilters", "f")
-call s:initVariable("g:NERDTreeMapToggleHidden", "H")
+call s:initVariable("g:NERDTreeMapToggleHidden", "I")
 call s:initVariable("g:NERDTreeMapUpdir", "u")
 call s:initVariable("g:NERDTreeMapUpdirKeepOpen", "U")