diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-07-01 11:24:19 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-07-01 11:24:19 +0200 |
commit | 10fdb8e42066a41d5bcd8a7ccfbb565bcb7c2e4a (patch) | |
tree | d339e737098823ccdfd81640843211cdd4c59ad1 /.vim/vimrc | |
parent | 3042f802da94cbeddc80ed912e1a304513d7ebdb (diff) | |
download | dotfiles-10fdb8e42066a41d5bcd8a7ccfbb565bcb7c2e4a.tar.gz |
terminal with F7
Diffstat (limited to '.vim/vimrc')
-rw-r--r-- | .vim/vimrc | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -27,14 +27,15 @@ nmap <silent> <C-w-j> :wincmd j<CR> nmap <silent> <C-w-h> :wincmd h<CR> nmap <silent> <C-w-l> :wincmd l<CR> -nmap <F5> :NERDTreeToggle<CR> -nmap <F6> :TlistToggle<CR> +nmap <silent> <F5> :NERDTreeToggle<CR> +nmap <silent> <F6> :TlistToggle<CR> +nmap <silent> <F7> :terminal<CR> "Tab mgmt -nmap <F1> :tabclose<CR> -nmap <F2> :tabprevious<CR> -nmap <F3> :tabnext<CR> -nmap <F4> :tabnew<CR> +nmap <silent> <F1> :tabclose<CR> +nmap <silent> <F2> :tabprevious<CR> +nmap <silent> <F3> :tabnext<CR> +nmap <silent> <F4> :tabnew<CR> "^] Jump to tag, ^t jump back command! MakeTags !ctags -R . |