Skip to content

Instantly share code, notes, and snippets.

@moenn
Last active October 17, 2018 06:52
Show Gist options
  • Save moenn/00c841e586fb49ff7b4ac91d01e580d4 to your computer and use it in GitHub Desktop.
Save moenn/00c841e586fb49ff7b4ac91d01e580d4 to your computer and use it in GitHub Desktop.
sublime 配置

Preference - Keybindings - User 中添加下面的代码,就能使用alt+方向键,将光标移动到行首,行尾.

{ "keys": ["alt+left"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["alt+right"], "command": "move_to", "args": {"to": "eol", "extend": false} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment