OS X Lion 中是否有类似 Emacs 的 Meta(Option/Alt)键功能?

OS X Lion 中是否有类似 Emacs 的 Meta(Option/Alt)键功能?

我想使用 Mf 和 Mb 以及所有其他方便的快捷键来实现单词前进/后退功能。这可能吗?

答案1

当然,将其放入您的~/Library/KeyBindings/DefaultKeyBinding.dict(如果不存在则创建它),并输入以下内容:

{
"~f"        = "moveWordForward:";               /* M-f Move forward word */
"~b"        = "moveWordBackward:";              /* M-b Move backward word */
"~<"        = "moveToBeginningOfDocument:";     /* M-< Move to beginning of document */
"~>"        = "moveToEndOfDocument:";           /* M-> Move to end of document */
}

这里如果你想了解 OS X 键盘字符的完整参考。这里如果您想在 OS X 中拥有更多 emacs 键绑定。

相关内容