UltiSnips 未正确触发
我正在使用 UltiSnips。
http://www.vim.org/scripts/script.php?script_id=2715一切
正常。假设当我输入 st
时,它会插入 submit_tag...
。但如果 st
位于其他字符之间,则它将不起作用。
例如: foost
无论如何要解决这个问题吗?
I'm using UltiSnips.
http://www.vim.org/scripts/script.php?script_id=2715
Everything works. Let's say when I type st<tab>
it inserts submit_tag…
. But if st<tab>
is in between other characters, it won't work.
For example: foost<tab>bar
Anyway to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是《Ultisnips》的作者。您可能会在我们的错误跟踪器上获得更快的反馈,例如:github.com/SirVer/ultisnips。
您正在寻找的功能称为字内扩展。像这样使用它:
“w”将确保您的代码片段也在其他单词内展开。
I am the author of Ultisnips. You might get faster feedback on our bug tracker for things like this: github.com/SirVer/ultisnips.
The feature you are looking for is called inword expansion. Use it like this:
The 'w' will make sure your snippet is also expanded inside of other words.