Skip to content

Instantly share code, notes, and snippets.

@qianlifeng
Last active December 22, 2018 13:13
Show Gist options
  • Save qianlifeng/b7236ff8a194d87d9ac00e18b2e05962 to your computer and use it in GitHub Desktop.
Save qianlifeng/b7236ff8a194d87d9ac00e18b2e05962 to your computer and use it in GitHub Desktop.
Mac Keybinding
// /Users/qianlifeng/Library/KeyBindings/DefaultKeyBinding.dict
// Actions: http://xahlee.info/kbd/osx_keybinding_action_code.html
{
"\UF729" = moveToBeginningOfLine:; // home
"\UF72B" = moveToEndOfLine:; // end
"$\UF729" = moveToBeginningOfLineAndModifySelection:; // shift-home
"$\UF72B" = moveToEndOfLineAndModifySelection:; // shift-end
"^a" = selectAll:; // ctrl-A
"^v" = paste:; // ctrl-V
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment