ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

与Rails相关的文件

作者: luqman ST2

Ruby on Rails项目导航简化

详细信息

  • 2016.06.08.21.47.06
  • github.com
  • github.com
  • 8年前
  • 2小时前
  • 13年前

安装次数

  • 总计 9K
  • Win 1K
  • Mac 5K
  • Linux 3K
8月7日 8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

README

源代码
raw.githubusercontent.com

Sublime Text 2/3 - 与Rails相关的文件

注意:我之前从未写过任何Python代码!因此,请随意实现最佳实践并提交pull request。

此插件通过进行一些基本的假设,使您能够轻松地在Rails项目中导航。我写了这个,这样我就不必经常使用侧边栏查找文件!

好的,让我们想象您在以下文件(截图2)上“右键单击”或使用“CMD+Shift+O”快捷键(截图1),它将搜索文件

posts_controller.rbapp/controllers

如果它在“admin”命名空间下,例如 app/controllers/admin/posts_controller.rb,则它将在 views/admin/posts/** 下查找,反之亦然。

views/posts/** - All files under this folder
models/post**  - Models starting with "post"

show.html.erbapp/views/posts

models/post**             - Models starting with "post"
views/posts/**            - All files in this folder
assets/javascript/post**  - Any javascript file starting with "post"
assets/stylesheets/post** - Any stylesheet file starting with "post"
controllers/post**        - Any controller file starting with "post"

post.rb 模型在 app/models

models/post**         - Models starting with "post"
views/posts/**        - All files in this folder
views/**/posts/**     - All files in this folder (e.g. admin namespace)
controllers/post**    - Any controller starting with "post"
controllers/**/post** - Any controller starting with "post" (e.g. admin namespace)

如果您想禁用上下文菜单,只需编辑 Rails.sublime-settings 文件,将“show_context_menu”更改为false。

未来

也许我们可以从当前文件中提取可能的片段,例如 render "post" 或甚至 render @posts,我们知道在哪里查找 > app/views/posts/_post

截图

在这里,我在查看模型下“page.rb”文件时按下了快捷键。

快速面板

上下文菜单

贡献者

鸣谢