├── DefaultKeyBinding.dict └── README.md /DefaultKeyBinding.dict: -------------------------------------------------------------------------------- 1 | { 2 | "^w" = "deleteWordBackward:"; 3 | "~f" = "moveWordForward:"; 4 | "~b" = "moveWordBackward:"; 5 | "~d" = "deleteWordForward:"; 6 | "~<" = "moveToBeginningOfDocument:"; 7 | "~>" = "moveToEndOfDocument:"; 8 | "~w" = "copy:"; 9 | "^y" = "yank:"; 10 | "^t" = "transpose:"; 11 | "^p" = "moveUp:"; 12 | "^n" = "moveDown:"; 13 | "^u" = "deleteToBeginningOfLine:"; 14 | } 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # keybindings 2 | 3 | Bring basic emacs keybindings to every text-input in OSX. 4 | 5 | ## Installation 6 | ``` 7 | git clone https://github.com/alexdavid/keybindings.git ~/Library/KeyBindings 8 | ``` 9 | --------------------------------------------------------------------------------