add <C-t> to open file in new tab

This commit is contained in:
kyazdani42
2020-03-01 15:07:29 +01:00
parent 7ac26175f2
commit 363a7b82aa
3 changed files with 4 additions and 2 deletions

View File

@@ -127,6 +127,7 @@ local function set_mappings()
['<2-RightMouse>'] = 'open_file("chdir")';
['<C-v>'] = 'open_file("vsplit")';
['<C-x>'] = 'open_file("split")';
['<C-t>'] = 'open_file("tabnew")';
['.'] = 'open_file("chdir")';
a = 'edit_file("create")';
d = 'edit_file("remove")';