change <c-[> to . to change directory path

This commit is contained in:
kyazdani42
2020-02-27 22:51:58 +01:00
parent 4c5c6816bd
commit a6f4ec6270
3 changed files with 7 additions and 7 deletions

View File

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