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

冷融合器文档启动器

linkarys ALL

使用Sublime Text 2/3中的当前选择在Adobe冷融合器10维基文档中进行搜索

详情

  • 2.0.4
  • github.com
  • 10年前
  • 54分钟前
  • 10年前

安装

  • 总计 6K
  • Win 5K
  • Mac 1K
  • Linux 403
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 1 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 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 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 1 0 0 0 0

README

源代码
raw.githubusercontent.com

冷融合器文档启动器

  • 提供一个命令来启动快速搜索和基于当前环境的文档启动
  • 通过输入面板快速搜索任何内容

提供一个命令来启动针对光标处的单词的冷融合器10快速文档搜索

源于 SublimeText2CfQuickDocsLauncher

安装

用法

  • 将光标放在或选择要搜索/加载的标签/函数周围
  • 使用shift + alt + h直接加载特定标签/函数的文档页面
  • 使用shift + alt + s执行针对特定单词的搜索操作
  • 使用shift + alt + ;打开快速搜索面板,并使用以下语法执行搜索

    search engine arg:value [arg:value ...] keyword
    

    例如。

    • 使用谷歌搜索关键字数组
    array
    
    • 使用中文搜索关键字数组
    g l:zh array
    
    • 使用版2.7的Python进行关键字数组搜索
    py e:2.7 array
    
    • 使用Stack Overflow搜索Python数组关键字
    st python array
    

    所有可用的搜索引擎缩写如下

  • g 或空对于google

  • py 对于python

  • php 对于php

  • st 对于stackoverflow

  • jq 对于jquery

  • mdn 对于mdn

  • subl 对于sublime text

快速加载和快速搜索操作将自动检测您的环境并加载或搜索正确的源。您应该在首选项->包设置->CF Docs Launcher中预先定义源。

设置

这里有一个演示

{
    // The following source will be used when plug-in could not find a specific source base on current environment
    "default": "https://www.google.com/search?q=",

    /**
     * Use of quick launch and quick search
     *
     * doc_url is use for quick launch
     * search_url is use for quick search
     * ---------------------------------------------------------------------------
     */

    "python": {
        "doc_url": "https://docs.pythonlang.cn/3.4/library/",
        "search_url": "https://docs.pythonlang.cn/3.4/search.html?check_keywords=yes&area=default&q=",
    },

    /**
     * Use for quick panel search
     *
     * You should defined the source pattern following the following format:
     *  "prefix": {
     *      "pattern": "http://xxxxx/${keyname:defaultValue}/xxxx?q="
     *  }
     *
     *  The when you type in the input panel (ctrl + shift + ; by default) with
     *      prefix keyname:val querystring
     *  It will launch a search at http://xxxxx/var/xxxx?q=querystring
     *  ---------------------------------------------------------------------------
     */
    "search_patterns": {
        "g": {
            "pattern": "https://www.google.com/search?hl=${l:en}&q="
        }
    }
}