Vim 自动完成 Rails 模型方法
是否可以配置 rubycomplete.vim 在顶部弹出范围方法并首先从模型文件中收集它们,而不是从 ActiveRecord 方法的全局声明中收集它们
Is it possible to configure rubycomplete.vim
that popup scope methods at the top and gather them from models files first, than from global declaration of ActiveRecord methods
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 tpopes Awesome rails.vim 与 exuberant ctags 您只需运行命令
:Rtags
,它就会为您的项目生成所有相关标签。If you are using tpopes awesome rails.vim in conjunction with exuberant ctags you can simply run the command
:Rtags
and it will generate all relevant tags for your project.