VIM 中的停止按钮
我经常测试某个功能或过于频繁地点击键盘上的某个键。 我无法停止该函数的输出...我无法阻止 VIM 执行它要求执行的操作。
有没有办法停止 VIM 中的所有进程?
Often I test a function or click too often on an key on my keyboard.
I can't stop the output of the function... I can't stop VIM doing what it is asked to do.
Is there a way to Stop all processes in VIM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最近问了一个类似的问题。
CTRL+C
大多数时候都可以用来中断一个长进程。要添加按钮,请参阅
:helptoolbar-icon
。它应该类似于
:amenu icon=[icon-path] Toolbar.Stop
I have asked a similar question recently.
CTRL+C
works most of the time to interrupt a long process.To add a button, see
:help toolbar-icon
.It should be something like
:amenu icon=[icon-path] Toolbar.Stop <C-C>
您可以在 Windows 上使用 ctrl-break。我不认为它作为一个按钮能很好地工作,因为如果 Vim 踢出大量输出,它可能无法足够快地服务 GUI 功能。
在 Windows 上(使用 mswin.vim) ctrl-break,其他地方都是 ctrl-c。
You could use ctrl-break on Windows. I do not think it would work well as a button since if Vim is kicking out a lot of output it may not be able to service the GUI functionality fast enough.
On Windows (with mswin.vim) ctrl-break, everywhere else ctrl-c.