From e9fe939769b9f5ea0234c5b07e53b89e5e4e8fd2 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Thu, 13 Aug 2026 20:13:37 +0200 Subject: fix emacs bindings --- home/private_Library/KeyBindings/DefaultKeyBinding.dict | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 home/private_Library/KeyBindings/DefaultKeyBinding.dict 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 */ +} -- cgit v1.2.3