在 Sublime Text → Preferences → Key Bindings - User
輸入這段就能夠跟一般常用的編輯器一樣方便的移動到行首or行尾了
請記得放在 中括號 內
[ // ←這是原本就有的括號
//Mac「command + ←」or「command + →」 移動至行首 or 行尾
{ "keys": ["super+right"], "command": "move_to", "args": { "to": "hardeol" } },
{ "keys": ["super+left"], "command": "move_to", "args": { "to": "hardbol" } },
//「Home or「End」 移動至行首 or 行尾
{"keys":["home"], "command":"move_to", "args":{"to":"bol"} },
{"keys":["end"], "command":"move_to", "args":{"to":"eol"} }
]
沒有留言:
張貼留言