aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2014-06-02 11:50:34 -0400
committerTeddy Wing2014-06-02 11:50:34 -0400
commit29b6982434f0311669043a1a00d2f06bf28b7ab7 (patch)
tree11ada4918cc11a4c6ff67efbbcca1cdf86f5a86b
parent465b81ea179dc1fd62767ea69fb23432dce50d0c (diff)
downloaddotvim-29b6982434f0311669043a1a00d2f06bf28b7ab7.tar.bz2
vimrc: change <leader>tx mapping to use "td" instead
"tx" is an awkward pair of keys and it kind of hurts to type. Change the mapping to something easier on the fingers.
-rw-r--r--vimrc5
1 files changed, 4 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 2b6a861..818168b 100644
--- a/vimrc
+++ b/vimrc
@@ -184,6 +184,9 @@
" * Add a leader command to go to the last active tab. Make it easier to
" back and forth between tabs.
"
+" 2014.06.02:
+" * Change <leader>tx to <leader>td. Typing "tx" is too uncomfortable.
+"
" Pathogen
@@ -465,7 +468,7 @@ nnoremap <leader>/ :nohlsearch<cr>
nnoremap <leader>tn :tabnew<cr>
" Delete buffer and go to previous tab
-nnoremap <leader>tx :bdelete \| normal! gT<cr>
+nnoremap <leader>td :bdelete \| normal! gT<cr>
" Go to last viewed tab
" http://stackoverflow.com/a/2120168