https://coderwall.com/p/upolqw/fix-sublime-text-home-and-end-key-usage-on-mac-osx
Preferences -> Key Bindings -> User
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } }
Preferences -> Key Bindings -> User
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } }
'Android' 카테고리의 다른 글
android x (0) | 2018.08.31 |
---|---|
calling koltin from java (0) | 2018.08.31 |
Executors.newSingleThreadExecutor 동작 테스트 (0) | 2018.08.31 |
sublime text 3 hom / end key macOs 에서 설정하기 (0) | 2018.08.10 |
Observable.fromFuture (0) | 2018.08.08 |