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

DevDocs离线

作者 hectorqin ST3

devdocs中的Sublime快速搜索符号

详情

  • 2.1.0
  • github.com
  • github.com
  • 6年前
  • 45分钟前
  • 7年前

安装数量

  • 总数 769
  • Win 404
  • Mac 157
  • Linux 208
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 1 0 0 0 0 0 0 0 0 1 0 0 0 0
Mac 1 1 0 0 0 0 0 0 0 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 2 0 0 0 0 0 0 0 0

README

raw.githubusercontent.com

Sublime-devdocs


作者:hector

邮箱:[email protected]


Sublime Text 3离线插件中devdocs的快速搜索符号

安装

安装的最简单方法是通过Package Control,其中Sublime-devdocs被列为Devdocs离线

  1. 使用菜单项工具 → 命令面板...打开命令面板

  2. 选择包控制:安装包

  3. 找到Devdocs离线并按Enter

或者通过下载zip文件,解压并将其放入Sublime的包文件夹中,将其重命名为“Devdocs离线”,这样可能可以正常工作!


如何使用

  1. 使用菜单项工具 → 命令面板...打开命令面板

  2. 选择Devdocs:所有语言

  3. 搜索您需要的语言并按Enter。它将从devdocs.io下载语言文档

  4. 下载后,您可以使用以下命令


命令

  1. Devdocs:所有语言 在面板中显示所有支持的语言及其版本,可以选择安装或卸载语言

  2. Devdocs:显示定义 搜索所选符号在匹配的语法中的定义。如果找到,它将在弹出窗口中显示

  3. Devdocs:搜索符号 在快速面板中搜索符号,选择项目以显示符号的定义

  4. Devdocs:设置默认版本 当语言有多个版本时,为匹配的语法设置默认搜索版本

  5. Devdocs:设置语法别名 将匹配的语法设置到哪种语言上,在插件不能识别语法语言时很有用


设置

  1. 默认设置

    {
        // This file is default setting of this plugin, please don't edit this file
    
        // Download proxy
        "http_proxy": "",
    
        // Max height and width of popup
        "popup_max_height": 1080,
        "popup_max_width": 1280,
    
        // Set true to use style file to set custom styles, this is experimental
        "use_style": false,
    
        // Default language version for symbol search
        "language_default_version": {
    
        },
        // Usually, this plugin parse the language type from the syntax setting of the view, this may be not accurate, you can set this configuration to set the syntax alias
        "syntax_alias":{
    
        },
        // languageWithVersion as key, languageForPath as value. You can set it When the path is wrong.
        "language_slug_alias":{
    
        }
    }
    
  2. 如果您想修改设置,请使用菜单项 首选项 → 包设置 → Devdocs 离线 → 设置 – 用户


```js
[
    { "keys": ["ctrl+alt+d"], "command": "devdocs_show_definition"},
    { "keys": ["ctrl+alt+s"], "command": "devdocs_search_symbol"},
]

```

许可证

Apache