2ffdbbd7baa1

vim: Fix BufExplorer mapping.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Wed, 26 May 2010 12:25:16 -0400
parents da49bac8587e
children 79b5e20cd96a
branches/tags (none)
files vim/bundle/bufexplorer/plugin/bufexplorer.vim

Changes

--- a/vim/bundle/bufexplorer/plugin/bufexplorer.vim	Fri May 21 15:16:57 2010 -0400
+++ b/vim/bundle/bufexplorer/plugin/bufexplorer.vim	Wed May 26 12:25:16 2010 -0400
@@ -17,7 +17,7 @@
 "
 "               You may use the default keymappings of
 "
-"                 <Leader>be  - Opens BE.
+"                 <Leader>B  - Opens BE.
 "                 <Leader>bs  - Opens horizontally window BE.
 "                 <Leader>bv  - Opens vertically window BE.
 "
@@ -47,8 +47,8 @@
 endif
 
 " Public Interface {{{1
-if maparg("<Leader>be") =~ 'BufExplorer'
-  nunmap <Leader>be
+if maparg("<Leader>B") =~ 'BufExplorer'
+  nunmap <Leader>B
 endif
 
 if maparg("<Leader>bs") =~ 'BufExplorerHorizontalSplit'
@@ -59,7 +59,7 @@
   nunmap <Leader>bv
 endif
 
-nmap <script> <silent> <unique> <Leader>be :BufExplorer<CR>
+nmap <script> <silent> <unique> <Leader>B :BufExplorer<CR>
 nmap <script> <silent> <unique> <Leader>bs :BufExplorerHorizontalSplit<CR>
 nmap <script> <silent> <unique> <Leader>bv :BufExplorerVerticalSplit<CR>