From e5d798bad7b9da6dce7c8d48557528c678b3fe9b Mon Sep 17 00:00:00 2001 From: yasuda Date: Mon, 13 Dec 2021 09:39:44 +0900 Subject: [PATCH] Add keybind for terminal window --- plugin/tabman.vim | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/plugin/tabman.vim b/plugin/tabman.vim index 77f344e..92624a2 100644 --- a/plugin/tabman.vim +++ b/plugin/tabman.vim @@ -14,5 +14,9 @@ if !exists('g:tabman_toggle') | let g:tabman_toggle = 'mt' | en com! TMFocus cal tabman#focus() com! TMToggle cal tabman#toggle() -exe 'nn ' g:tabman_focus ':TMFocus' -exe 'nn ' g:tabman_toggle ':TMToggle' +exe 'nn ' g:tabman_focus ':TMFocus' . '' +exe 'nn ' '' . g:tabman_focus ':TMFocus' . '' +exe 'tno ' g:tabman_focus '' . ':TMFocus' . '' +exe 'nn ' g:tabman_toggle ':TMToggle' . '' +exe 'nn ' '' . g:tabman_toggle ':TMToggle' . '' +exe 'tno ' g:tabman_toggle '' . ':TMToggle' . ''