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

跳转到Ruby Gem

作者 ZainIftikhar7vals MacLinux 全部

快速访问已安装gem的代码。

详细信息

安装

  • 总数 28
  • Win 0
  • Mac 17
  • Linux 11
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日 6月23日
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 1 0 1 0 0 0 0 2 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 2 0 0 0 1 0 0 0 0 0 1 2 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0

Readme

源代码
raw.​githubusercontent.​com

跳转到Ruby Gem 0.3.0

此插件专为Ruby项目设计,允许您快速访问已安装gem的代码。它将在新的Sublime Text窗口中打开gem的源代码以方便检查。

gif

安装

  1. 打开Sublime Text。
  2. 按Ctrl + Shift + P(Linux)或Cmd + Shift + P(Mac)打开命令面板。
  3. 输入“安装 Package”并按Enter。
  4. 输入“GotoRubyGem”并按Enter进行安装。

使用方法

  1. 在Sublime Text中按Ctrl + Shift + P(Linux)或Cmd + Shift + P(Mac)。
  2. 输入“跳转到Ruby Gem”并按Enter。
  3. 它将显示所有已安装gem的列表。
  4. 从列表中选择一个gem,插件将在新窗口中打开其源代码。

指定自定义目录(可选)

为了指定应从中搜索gem的自定义目录

直接在Sublime Text的设置中存储配置:打开首选项 > 软件包设置 > 跳转到Ruby Gem,并参考设置 - 默认查看示例。您可以使用以下配置自定义GotoRubyGem

  • use_custom_gems_directories:
    • 控制是否使用自定义目录进行gem搜索。
    • 默认值: false
    • 选项:
    • true: 启用在custom_gems_directories中指定的自定义gem目录中的搜索。
    • false: 使用默认的gem目录进行搜索。
  • custom_gems_directories:
    • 一个包含应搜索gem的绝对路径的列表。
    • 用法:
    • 只有在将use_custom_gems_directories设置为true时才指定路径。
    • 如果为空并且 use_custom_gems_directoriestrue,则不会搜索任何gem。

示例配置:

现在gem只能在 /home/vals/.rvm/rubies/ruby-3.1.4/lib/ruby/gems/3.1.0/gems 内部搜索

{
    "use_custom_gems_directories": true,
    "custom_gems_directories": [
        "/home/vals/.rvm/rubies/ruby-3.1.4/lib/ruby/gems/3.1.0/gems"
    ]
  }

限制

  • 对Linux/Mac上带有RVM/rbenv的Sublime Text的实验性支持。

使用 Goto Ruby Gem 轻松探索gem代码!

反馈

您的反馈和建议非常重要!欢迎提issue或为项目做出贡献。