Gvim 中的文件导航

发布于 2024-11-10 12:44:07 字数 200 浏览 3 评论 0原文

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

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

发布评论

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

评论(2

网白 2024-11-17 12:44:07

您可以映射击键来执行 :bp

nmap <keystroke> :bp<CR>

请参阅 :h :map 了解更多信息。

You can map a keystroke to execute :bp

nmap <keystroke> :bp<CR>

See :h :map for more information.

失去的东西太少 2024-11-17 12:44:07

就像 freitass 回答的那样,解决方案是在 .gvimrc 中插入以下行

nmap fg :bp<CR>

gf 将向前导航
fg 将向后导航

Like answered by freitass, a solution would be inserting following line in .gvimrc

nmap fg :bp<CR>

gf would navigate forward
fg would navigate backward

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