eubnara / troubleshooting

이것저것 공부하다가 맞닥뜨리는 문제점, 해결방식 등 정리
2 stars 0 forks source link

home, end key 변경하기 #100

Open eubnara opened 1 month ago

eubnara commented 1 month ago

https://www.reddit.com/r/MacOS/comments/pz9vnu/behavior_of_the_home_and_end_keys/?onetap_auto=true&one_tap=true

eubnara commented 1 month ago
❯ cat ~/Library/KeyBindings/DefaultkeyBinding.dict
{
    "₩" = ("insertText:", "`");
    "\UF729" = "moveToBeginningOfLine:";
    "\UF72B" = "moveToEndOfLine:";
    "$\UF729" = moveToBeginningOfLineAndModifySelection:; // shift-home
    "$\UF72B" = moveToEndOfLineAndModifySelection:; // shift-end
    "^\UF729" = moveToBeginningOfDocument:; // ctrl-home
    "^\UF72B" = moveToEndOfDocument:; // ctrl-end
    "^$\UF729" = moveToBeginningOfDocumentAndModifySelection:; // ctrl-shift-home
    "^$\UF72B" = moveToEndOfDocumentAndModifySelection:; // ctrl-shift-end
}