diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2026-08-13 20:13:37 +0200 |
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2026-08-13 20:13:37 +0200 |
| commit | e9fe939769b9f5ea0234c5b07e53b89e5e4e8fd2 (patch) | |
| tree | ff4e6a195616649fc4140ffbc6154441b3405e6e | |
| parent | 746b315898c0785b10ca5bb618bdc0f280b80b29 (diff) | |
| -rw-r--r-- | home/private_Library/KeyBindings/DefaultKeyBinding.dict | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/home/private_Library/KeyBindings/DefaultKeyBinding.dict b/home/private_Library/KeyBindings/DefaultKeyBinding.dict new file mode 100644 index 0000000..86d8ea1 --- /dev/null +++ b/home/private_Library/KeyBindings/DefaultKeyBinding.dict @@ -0,0 +1,12 @@ +// https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/EventOverview/TextDefaultsBindings/TextDefaultsBindings.html +{ + "~f" = "moveWordForward:"; + "~b" = "moveWordBackward:"; + "~<" = "moveToBeginningOfDocument:"; + "~>" = "moveToEndOfDocument:"; + "~v" = "pageUp:"; + "~d" = "deleteWordForward:"; + "~^h" = "deleteWordBackward:"; + "~\010" = "deleteWordBackward:"; /* Option-backspace */ + "~\177" = "deleteWordBackward:"; /* Option-delete */ +} |