使用rails.vim 转到最后一个文件

发布于 2024-12-10 22:39:45 字数 241 浏览 0 评论 0原文

我刚刚开始使用 Rails.vim 作为我的 ROR IDE,我真的很喜欢它。我唯一不知道该怎么做,但我希望我能做的,就是跳回到我正在编辑的最后一个文件。

例如,如果我正在编辑一个文件,比如说一个视图,并且我使用 :Rcontroller 跳过相应的控制器,是否有一种方法可以快速返回到模型(没有 : Rmodel)?我正在寻找一些类似于 Visual Studio 中的 CTRL-TAB 的功能。

I am just getting into rails.vim as my ROR IDE and I am really liking it. The only thing I don't know how to do, that I wish I could, is hop back to the last file I was editing.

For example, if I am editing one file, say a view and I use :Rcontroller to hop over the the corresponding controller, is there a way to quickly go back to the model (without :Rmodel)? I'm looking for some functionality like that of CTRL-TAB in visual studio.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我一直都在从未离去 2024-12-17 22:39:45

这实际上与 Rails.vim 插件无关。将以下行添加到您的 .vimrc 文件中

map <Leader>p <C-^> " Go to previous file

假设 映射到 , 那么您只需按 ,p< /code> 转到上一个文件。

这就是我绘制领导者的方式:

let mapleader = ","

This isn't actually related to Rails.vim plugin. Add the following line to your .vimrc file

map <Leader>p <C-^> " Go to previous file

Assuming <Leader> is mapped to , then you can just press ,p to go to the previous file.

This is how I've mapped my leader:

let mapleader = ","
星星的軌跡 2024-12-17 22:39:45

要返回,只需在命令模式下按 ctrl+octrl+i 在打开的文件历史记录中前进。

To go back just hit ctrl+o in command mode, ctrl+i to go forward in opened file history.

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