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

猎犬搜索

bgreenlee ST3

Sublime Text插件,用于Etsy的Hound代码搜索

详细信息

安装次数

  • 总计 430
  • Win 119
  • Mac 245
  • Linux 66
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 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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

Hound - Hound Search Sublime Text插件

在Sublime Text内搜索Hound

安装

通过Package Control安装。打开您的命令面板(⇧⌘P),运行“Package Control: Install Package”,寻找“Hound Search”。

配置

需要两个参数

  • hound_url - 您的Hound实例的位置
  • github_base_url - 您的代码库所在的基础URL

如果您想双击搜索结果以在Sublime中打开它们,您还需要设置

  • local_root_dir - 您的代码库的本地根目录

下面是所有设置的说明。

/* default settings */
{
    // location of your hound instance
    // e.g. http://hound.example.com
    "hound_url": "",

    // the base url of where your repositories live
    // e.g. https://github.com/youror
    "github_base_url": "",

    // local root directory of your repositories, used for opening files within Sublime
    // e.g. /Users/bob/repositories
    "local_root_dir": "",

    // don't display results from these repos
    // e.g. ["somerepo", "someotherrepo"]
    "exclude_repos": [],

    // custom headers to send with the API request to Hound
    // e.g. {"X-Auth":"s3kret"}
    "custom_headers": {},

    // open double-clicked search results in the browser by default
    // set to false to open in Sublime Text (must have local_root_dir set)
    // shift-double-click will always do the opposite
    "default_open_in_browser": true,

    // set to true to enable debug logging
    "debug": false
}

注意

Hound会为搜索结果设置双击处理器。事件会被转发,因此不会干扰系统双击处理器。然而,由于Sublime Text当前只有全局鼠标事件上下文,它将与其他也定义了双击处理器的插件发生冲突。