Quellcode durchsuchen

Add quick 'move buffer to new tab' keybind

Andrew Swistak vor 8 Jahren
Ursprung
Commit
eb99cf622b
1 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. 2 0
      vimrc

+ 2 - 0
vimrc

@@ -88,11 +88,13 @@ if has("nvim")
   nnoremap <silent>   <A-J>   :wincmd J<CR>
   nnoremap <silent>   <A-H>   :wincmd H<CR>
   nnoremap <silent>   <A-L>   :wincmd L<CR>
+  nnoremap <silent>   <A-T>   :wincmd T<CR>
 else
   nnoremap <silent>    K    :wincmd K<CR>
   nnoremap <silent>    J    :wincmd J<CR>
   nnoremap <silent>    H    :wincmd H<CR>
   nnoremap <silent>    L    :wincmd L<CR>
+  nnoremap <silent>    T    :wincmd T<CR>
 endif
 nnoremap <silent>     +     :wincmd +<CR>
 nnoremap <silent>     _     :wincmd -<CR>