Emacs Lisp 在 init 文件中对齐键绑定定义
我的 Emacs 初始化文件中有以下行。
(global-set-key (kbd "C-x a r") 'align-regexp)
有没有办法在特定的正则表达式中进行硬编码,这样我就不必每次都指定它?
I have the following line in my Emacs init file.
(global-set-key (kbd "C-x a r") 'align-regexp)
Is there any way to hard-code in a particular regex so that I don't have to specify it every time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用硬编码的正则表达式创建自己的命令,如下所示:
You could create your own command with the hard-coded regexp like so:
您可以将该按键序列绑定到键盘宏:
使用 Mx
align-regexp
创建键盘宏,然后输入您的正则表达式。然后使用 Mx
insert-kbd-macro
return return 将宏插入到 .emacs 文件中You could just bind that key-sequence to a keyboard-macro:
Create a keyboard macro with M-x
align-regexp
then enter your regex.Then insert the macro into your .emacs file with M-x
insert-kbd-macro
return return