diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-05-24 17:10:29 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-05-24 17:13:19 +0200 |
commit | fffca69bd24491cd335d4142e2d1fcafcafc1170 (patch) | |
tree | f8d8663d1af07b608693e3de21e9bdfeeb1fe3ee /.vim | |
parent | e0571530ffc3396cd0235ba94e63de2d7aa27f62 (diff) | |
download | dotfiles-lean.tar.gz |
update tab mgmnt keyslean
Diffstat (limited to '.vim')
-rw-r--r-- | .vim/vimrc | 15 |
1 files changed, 7 insertions, 8 deletions
@@ -60,19 +60,18 @@ nmap <silent> <C-e> :e .<CR> nnoremap <silent> <Space> @=(foldlevel('.')?'za':"\<Space>")<CR> vnoremap <Space> zf -au filetype c* nmap <silent> <F8> :Make<CR> -au filetype sh nmap <silent> <F8> :Runbuffer<CR> -au filetype python nmap <silent> <F8> :Runbuffer<CR> +au filetype c* nmap <silent> <F4> :Make<CR> +au filetype sh nmap <silent> <F4> :Runbuffer<CR> +au filetype python nmap <silent> <F4> :Runbuffer<CR> + +nmap <silent> <F3> :Newterm<CR> "nmap <silent> <F5> :NERDTreeToggle<CR> "nmap <silent> <F6> :TlistToggle<CR> -nmap <silent> <F7> :Newterm<CR> "Tab mgmt -nmap <silent> <F1> :tabclose<CR> -nmap <silent> <F2> :tabprevious<CR> -nmap <silent> <F3> :tabnext<CR> -nmap <silent> <F4> :tabnew<CR>:e .<CR> +nmap <silent> gc :tabclose<CR> +nmap <silent> gn :tabnew<CR>:e .<CR> " =========== |