使用rails.vim 转到最后一个文件
我刚刚开始使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这实际上与 Rails.vim 插件无关。将以下行添加到您的
.vimrc
文件中假设
映射到,
那么您只需按,p< /code> 转到上一个文件。
这就是我绘制领导者的方式:
This isn't actually related to Rails.vim plugin. Add the following line to your
.vimrc
fileAssuming
<Leader>
is mapped to,
then you can just press,p
to go to the previous file.This is how I've mapped my leader:
要返回,只需在命令模式下按 ctrl+o,ctrl+i 在打开的文件历史记录中前进。
To go back just hit ctrl+o in command mode, ctrl+i to go forward in opened file history.