Skip to content

Instantly share code, notes, and snippets.

@redraiment
Last active February 4, 2020 02:20
Show Gist options
  • Save redraiment/e7ea9d361cb5a0af49a3 to your computer and use it in GitHub Desktop.
Save redraiment/e7ea9d361cb5a0af49a3 to your computer and use it in GitHub Desktop.
~/Library/KeyBindings/DeafultKeyBinding.dict 解决OSX Option 快捷键输出奇葩字符的问题
/*
* Ctrl(C): ^
* Option(M): ~
*/
{
"^/" = "undo:";
"^a" = "moveToBeginningOfLine:";
"^e" = "moveToEndOfLine:";
"^g" = "_cancelKey:";
"^t" = "transpose:";
"^v" = "pageDown:";
"^w" = "cut:";
"^y" = "paste:";
"~/" = "complete:";
"~<" = "moveToBeginningOfDocument:";
"~>" = "moveToEndOfDocument:";
"~b" = "moveWordBackward:";
"~c" = "capitalizeWord:";
"~d" = "deleteWordForward:";
"~f" = "moveWordForward:";
"~l" = "lowercaseWord:";
"~m" = "setMark:";
"~t" = "transposeWords:";
"~u" = "uppercaseWord:";
"~v" = "pageUp:";
"~w" = "copy:";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment