請幫助VintageMode中的映射。 我想避免Esc鍵關鍵 http://vim.wikia.com/wiki/Avoid_the_escape_keySublime-text 3復古模式映射
豪這些鍵映射?
- Alt鍵 + Ø下面打開當前正在編輯一個新的生產線,
- Alt鍵 + 一個追加到當前行的末尾,
- Alt鍵 + p在當前插入位置粘貼。
- Alt鍵 + ķ向上移動
請幫助VintageMode中的映射。 我想避免Esc鍵關鍵 http://vim.wikia.com/wiki/Avoid_the_escape_keySublime-text 3復古模式映射
豪這些鍵映射?
您可以打開Default keymap並將您想要的條目複製到您的用戶鍵盤映射中。之後鍵入alt+
,如果它是大寫alt+shift+
和小寫char。將上下文從"key": "setting.command_mode"
更改爲"key": "setting.command_mode", "operator": "equal", "operand": false
。爲每個你想要的鍵綁定做這個,它應該工作。
實施例:
{ "keys": ["alt+shift+a"], "command": "enter_insert_mode", "args":
{"insert_command": "move_to", "insert_args": {"to": "hardeol"} },
"context": [{"key": "setting.command_mode", "operator": "equal", "operand": false}]
},
要創建自定義鍵綁定使用Menu > Preferences > Key Bindings
,看到Sublime Text Unofficial Documentation關於鍵綁定的詳細信息。
這裏是一些documentation on customising Vintage。
要查看復古默認密鑰綁定,請查看復古包bundled with Sublime Text。雖然過時了,但sublimehq有Vintage package on github。
也試試Vintageous。
感謝信息 –