diff options
author | Teddy Wing | 2017-02-21 12:32:39 +0100 |
---|---|---|
committer | Teddy Wing | 2017-02-21 12:32:39 +0100 |
commit | d12d69fcd391eb4abe80f1d5703696859e668db5 (patch) | |
tree | 9672d2d6eb15b42a85221d7ae3ed301bd7cfc364 | |
parent | 46007d5c306a96bd668962714c5b286bfee73909 (diff) | |
download | dotvim-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.
-rw-r--r-- | vimrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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> |