UltiSnips 未正确触发

发布于 2024-12-12 00:15:19 字数 366 浏览 0 评论 0原文

我正在使用 UltiSnips。

http://www.vim.org/scripts/script.php?script_id=2715一切

正常。假设当我输入 st 时,它会插入 submit_tag...。但如果 st 位于其他字符之间,则它将不起作用。

例如: foostbar

无论如何要解决这个问题吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忱杏 2024-12-19 00:15:19

我是《Ultisnips》的作者。您可能会在我们的错误跟踪器上获得更快的反馈,例如:github.com/SirVer/ultisnips。

您正在寻找的功能称为字内扩展。像这样使用它:

snippet st "My cool st snippet" w
stollen
endsnippet

“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:

snippet st "My cool st snippet" w
stollen
endsnippet

The 'w' will make sure your snippet is also expanded inside of other words.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文