Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- php
- pycharm
- windows10
- Mac
- sublime text
- Bybit
- MSSQL
- 서브라임텍스트
- 리눅스
- timezone
- 윈도우7
- XE
- Android Studio
- Linux
- phpstorm
- 윈도우10
- 테마주
- 워드프레스
- Python
- 안드로이드 스튜디오
- 줄번호
- 검색
- Bitcoin
- 황교안
- 정기결제
- 단축키
- 워뇨띠
- JavaScript
- MySQL
- 제4이동통신
Archives
- Today
- Total
OVERCODE
Mac OSX 의 Sublime Text 에서 Apple 키보드의 Home, End 키 사용 본문
위와 같은 apple 키보드를 mac book 에 연결하여 사용중이다.
하지만 Sublime Text 에서 기본적으로 Home 키와 End 키가 먹통이라는게 문제.
아래와 같이 Sublime Text 의 설정을 변경하여 적용할수 있다.
메뉴 : 환경설정 > 키 바인딩 선택
오른쪽에 나타난 User 탭에다가 아래의 키 값들을 입력하고 저장하면 완료.
내용을 보면 살짝 이해된다. Home 키와 End 키에 대한 설정들이다.
{ "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 } }
Home : 줄의 처음으로 이동
End : 줄의 끝으로 이동
⇧ + Home : 커서 위치부터 줄의 처음까지 선택
⇧ + End : 커서 위치부터 줄의 끝까지 선택
그리고 아래의 값들은 Ctrl 키와의 Home, End 키의 조합인 설정값들이다. 필요하면 추가한다.
{ "keys": ["ctrl+home"], "command": "move_to", "args": {"to": "bof"} },
{ "keys": ["ctrl+end"], "command": "move_to", "args": {"to": "eof"} },
{ "keys": ["ctrl+shift+home"], "command": "move_to", "args": {"to": "bof", "extend": true} },
{ "keys": ["ctrl+shift+end"], "command": "move_to", "args": {"to": "eof", "extend": true} }
(참고 : coderwall.com/p/upolqw/fix-sublime-text-home-and-end-key-usage-on-mac-osx)
'sublime text' 카테고리의 다른 글
Comments