aboutsummaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorTeddy Wing2017-02-21 12:32:39 +0100
committerTeddy Wing2017-02-21 12:32:39 +0100
commitd12d69fcd391eb4abe80f1d5703696859e668db5 (patch)
tree9672d2d6eb15b42a85221d7ae3ed301bd7cfc364 /vimrc
parent46007d5c306a96bd668962714c5b286bfee73909 (diff)
downloaddotvim-d12d69fcd391eb4abe80f1d5703696859e668db5.tar.bz2
vimrc: Change <leader>tf mapping to <leader>z
Typing <leader>tf was too many keys. I wanted to shorten the command a bit to make running tests really quick.
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc5
1 files changed, 4 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 384778d..fd9e8a0 100644
--- a/vimrc
+++ b/vimrc
@@ -354,6 +354,9 @@
" 2017.02.17:
" * Add <leader>tf mapping to run current RSpec spec file.
"
+" 2017.02.21:
+" * Change <leader>tf mapping to <leader>z.
+"
" Pathogen
@@ -557,7 +560,7 @@ let g:slimv_swank_cmd = '! screen -d -m -t REPL-SBCL sbcl --load ~/.vim/bundle/s
" RSpec
-nnoremap <leader>tf :call RunCurrentSpecFile()<cr>
+nnoremap <leader>z :call RunCurrentSpecFile()<cr>