不喜欢用 sublime 的 vim 模式现在比较需要的是
1. 删除单词就和 vim 中的 d+w 功能一样,直接在 key_mapping 中写个映射就能用了,这个答案请不要给出 cmd+d 选中单词再 delete
2. 从光标持续向后选中 这个答案不要 cmd + shift + ->
上面两个问题需要的答案是能够在 key_mapping 中映射的按键的 command,请各位 sublime 使用者作答,也别问为什么不用 vim 或者 vim 模式,每个人有自己选择。
1
jfcherng 2015-10-26 19:39:48 +08:00
1.
{ "keys": ["ctrl+alt+'"], "command": "delete_word", "args": { "forward": true } }, 2. { "keys": ["ctrl+alt+shift+l"], "command": "move", "args": { "by": "word_ends", "extend": true, "forward": true } }, 你想要的答案可在 sublime console 中使用 sublime.log_commands(True) ,按下按鍵便會印出命令。 上面是我自己使用的映射。 |