sublime模式下开启vim并修改esc

时间:2022-02-18 19:08:00

首先我用的是sublime text2

sublime下开启vim模式:

在Preference -> Setting-User里面加上

 "ignored_packages":
[
]

就可以使用一些vim的基本功能了。

修改ESC:

esc超级远按起来超级不方便, 所以我们可以把esc修改掉。

如果把esc修改成shift+space的话, 在Preference -> Browse Packages 里面, 最下面找到Vintage文件, 然后在里面找到default,sublime-keymap, 在最后加上

 ,
{ "keys": ["shift+space"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
}, { "keys": ["shift+space"], "command": "hide_auto_complete", "context":
[
{ "key": "auto_complete_visible", "operator": "equal", "operand": true }
]
}, { "keys": ["shift+space"], "command": "vi_cancel_current_action", "context":
[
{ "key": "setting.command_mode" },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": false },
{ "key": "vi_has_input_state" }
]
}

开头的逗号不要忘记..这样shift+space也就有了esc的功能。

然而我是将Caps Lock 这个改成了ESC, 但是sublime貌似没有办法改, 所以我直接把电脑的Caps Lock给改掉了...

Windows Registry Editor Version 5.00

 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:,,,,,,,,,,,,,,3a,,,,,00

新建一个文本文档然后把上面的代码复制进去, 另存为XXX.reg。 然后打开那个文档重启电脑就可以了 =.=。