sublime text里怎么使光标跳至行尾和行首,快捷键如保设置?
sublime text3 里
Preferences > Key Bindings — User
加入下面这行 :
# 以下是 按shift + e
{ "keys": ["shift+e"], "command":"move_to", "args":{"to":"eol"}}
# 以下是 按shift+ 回车
{ "keys": ["shift+enter"], "command":"move_to", "args":{"to":"eol"}}