让 YASnippet 和 viper-mode 在 emacs 中协同工作
我在 emacs 中使用 viper-mode,但我也想使用 YASnippet。但是,当我启用 viper 模式并尝试通过 YASnippet 使用制表符完成时,没有任何反应。我怎样才能让他们两个一起工作?
I use viper-mode in emacs, but I want to use YASnippet as well. However, when I enable viper-mode and try using tab-completion through YASnippet, nothing happens. How do I get the two of them to work together?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用没有任何自定义的 Emacs (
emacs -q
),我得到了以下结果:尝试一下,看看它是否有效(例如,如果您的 而不是 TAB - 尝试执行 Mx describe-key TAB 看看会发生什么 的额外绑定才能正常工作。
.emacs
中有某些内容> 这把事情搞砸了)。另外,检查 Emacs 认为您的 TAB 键是什么。在我的 Windows 系统上,Tab 键绑定到*Help*
缓冲区将其转换为。yasnippet
似乎绑定到 TAB,因此我需要有关 Emacs 如何处理 TAB 的更多信息,请阅读 功能键文档。
Using an Emacs without any customizations (
emacs -q
), I got the following to work:Try that, see if it works (as in, if there's something in your
.emacs
that's messing things up). Also, check to see what Emacs thinks your TAB key is. On my windows system, the tab key was bound to <tab> and not TAB - try doing M-x describe-key TAB and see what the*Help*
buffer translates it to.yasnippet
appears to bind to TAB, so I needed the extra binding for <tab> to get things to work.For more information about how Emacs handles the TAB, read the documentation for function keys.