OS X 터미널 바로 가기 : 줄의 시작 / 끝으로 이동
OS X 터미널 내에서 Ctrl+ A및 Ctrl+ 를 사용하여 줄의 시작과 끝에서 점프 할 수 있다는 것을 알고 있습니다 E. 하지만 에디터에서 Cmd+ Right화살표와 Cmd+ Left화살표 로 점프하는 데 너무 익숙해서 터미널에도이 단축키를 사용하고 싶습니다.
Google에서 해결책을 찾지 못 했으므로 여기 누군가가 도울 수 있습니다.
최신 정보
의견 에서와 같이 OS X 터미널에 커서를 단어 단위로 이동하는 방법이 있습니까? 의 해결책을 시도했습니다 .
불행히도 터미널 설정 Cmd은 여기에서 볼 수 있듯이 수정 자 키로 포함되지 않는 것 같습니다 .
Karabiner 라는 편리한 앱을 사용 하여이 작업을 비롯한 많은 작업을 수행합니다. 무료이며 오픈 소스입니다.
사람들이 원할 수있는 많은 일반적인 리맵에 대한 많은 편리한 사전 설정이있는 키보드 리 매퍼입니다.
스크린 샷에서 볼 수 있듯이이 리맵은 Karabiner에 사전 설정으로 포함되어 있습니다.
도움이 되었기를 바랍니다. 다시 매핑 해보세요.
fn + shift + leftArrow = goto beginning of line
fn + shift + rightArrow = goto end of line
이것들은 나를 위해 일한다
최신 Mac OS에서는 shift
+ home
또는 shift
+를 사용할 수 있습니다.end
vi를 사용하여 터미널에서 설정 :
Macbook Pro 키보드의 "홈"버튼 : Fn + 왼쪽 화살표.
Macbook Pro 키보드의 "종료"버튼 : Fn + 오른쪽 화살표.
이것이 당신에게 효과가 있는지 확실하지 않지만 (나는 여전히 사용하고 있습니다 OS 10.8
), 다음은 내 터미널에서 작동합니다.
home = move cursor to the start of the line
shift+end = move cursor to the end of the line
alt+leftArrow = move one "word" to the left
alt+rightArrow = move one "word" to the right
도움이 되었기를 바랍니다!
iterm2의 경우 :
프로필 / 프로필 열기 / 키로 이동
Cmd + left_arrow_key를 설정하여 16 진수 코드 001 보내기
Cmd + right_arrow_key를 설정하여 16 진수 코드 005 보내기
이렇게하면 Cmd + arrow_keys를 사용하여 줄의 처음에서 끝으로 이동할 수 있습니다.
fn + leftArraw or fn + rightArrow
나를 위해 일했습니다!
You could download Better Touch Tools. It's an app that allows you to make custom key-bindings and shortcuts over your entire system or individual apps. Using it, you could make a shortcut in the terminal that emulates ctrl-a/ctrl-e whenever you press cmd-left/cmd-right, respectively. I definitely recommend it! I've been using it for years and I have over 50 shortcuts spread across several different apps.
Here I found a tweak for this, without any third party tool. This will make the following shortcut to work:
fn + right: to go to the end of the line.
fn + left: to go to the beginning of the line.
- Open terminal preferences.(
cmd + ,
). - Go to your selected theme and then to the keyboard tab.
참고 URL : https://stackoverflow.com/questions/29369352/os-x-terminal-shortcut-jump-to-beginning-end-of-line
'programing' 카테고리의 다른 글
대문자없이 IntelliJ IDEA 12 코드 완성 (0) | 2020.09.21 |
---|---|
Bash 배열에서 요소 제거 (0) | 2020.09.21 |
NumPy 배열에 숫자가 아닌 값이 하나 이상 포함되어 있는지 감지 하시겠습니까? (0) | 2020.09.21 |
IFRAME에서 현재 URL 가져 오기 (0) | 2020.09.21 |
ASP.NET MVC 작업에서 리퍼러 URL을 얻으려면 어떻게합니까? (0) | 2020.09.21 |