Gvim 中的文件导航
在 Gvim 中,有什么方法可以追溯到使用“gf”打开的一系列文件,
File1 <gf> opens File2 <gf> opens File3 <gf> opens File4 ...
我想以某种方式返回到 File1。与 Ctrl+6 类似,但它会在最后两个文件之间切换。
In Gvim is there any way to trace back a series of files opened using "gf"
File1 <gf> opens File2 <gf> opens File3 <gf> opens File4 ...
I would like someway to go back to File1. Like Ctrl+6 except for the it toggles between last two files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以映射击键来执行
:bp
请参阅
:h :map
了解更多信息。You can map a keystroke to execute
:bp
See
:h :map
for more information.就像 freitass 回答的那样,解决方案是在 .gvimrc 中插入以下行
gf 将向前导航
fg 将向后导航
Like answered by freitass, a solution would be inserting following line in .gvimrc
gf would navigate forward
fg would navigate backward