如何针对特定模式覆盖 emacs lisp 中的函数?
如何使用我自己的特定模式实现来覆盖 emacs 函数? 示例/参考会很好
谢谢
How can I override emacs function with my own implementation for a specific mode?
example/reference would be great
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎是一件奇怪的事情,但我想你可以通过建议该函数来做到这一点。示例:
评估此建议后,如果给
*
函数提供两个参数 6 和 9,则该函数将返回 42,但仅限于 html 模式。This seems like an odd thing to want to do, but you could do it by advising the function, I suppose. Example:
After evaluating this advice, the
*
function will return 42 if it is given the two arguments 6 and 9, but only in html-mode.