忽略错误的 vim 窗口中的某些命令
很常见的是,我在快速修复、书呆子树或其他特殊窗口中按下 Ctrl-O,以为我在主窗口中。我想做的是返回主窗口中之前的位置。我也倾向于通过在我的快速修复窗口中打开 bufexplorer 来犯这个错误,这会导致一些非常奇怪的问题。
有没有一种简单的方法可以忽略某些类型的缓冲区中的某些命令?
It's pretty common that I'm in a quickfix, nerdtree, or other special window and hit Ctrl-O, thinking I'm in my main window. What I'm trying to do is go back to my previous location in my main window. I tend to also make this mistake by opening up by bufexplorer in my quickfix window, and that causes some really strange problems.
Is there an easy way to ignore certain commands in certain kinds of buffers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您始终可以将某些内容映射到
(无操作),例如在 netrw 中 (:e .
的适用性取决于所讨论的案例。与自动命令中的 Filetype 和
结合使用,可能会产生良好的结果。You can always map certain things to
<NOP>
(no operation),for example in netrw (:e .)
Applicability of this will, of course, depend on a case in question. Combined with Filetype and
<buffer>
in autocommands this may give good results.p
让您转到上一个窗口。<C-w>p
let's you go to the previous window.要向后跳后向前跳,可以按 Ctrl+I。
来自 vim wiki - 跳转到以前访问过的位置:
To jump forward after jumping back you can press Ctrl+I.
From vim wiki - Jumping to previously visited locations: