Vim 状态栏预测/完成?
昨天我玩了一些 vim 脚本,并设法对我目前正在输入的内容进行一些超出状态栏的预测,通过循环 - 请参阅屏幕截图(灰色+黄色条)。
问题是,我不记得我是如何得到它或找到我用于 vim 魔法的代码片段(我记得它非常简单):它要么是文档中的示例,要么是我在 vim wiki 中找到的东西。所以,我正在尝试回溯我的步骤 - 有关查找这些内容的 vimscript 函数的任何线索吗?我意识到这是一个奇怪的问题,但任何线索都会很棒 - 谢谢。
I played with some vim scripting yesterday and managed to get some over-the-status-bar prediction to whatever I'm typing at the moment, with cycling - see screenshot (gray + yellow bar).
Problem is, I can't remember how I got that or find the code snippet I used for that vim magic (I remember it being quite simple): it was either an example in the docs or something I picked up in the vim wiki. So, I'm trying to retrace my steps - any clue on what vimscript function/s to look up for these? I realize this is an odd question, but any clues will be great - thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是通过
在命令行中键入时按
完成的,完成选项将出现在上面。This is done with
When you press
<Tab>
while typing in the command line, completion options will appear above.