DevDocs离线
devdocs中的Sublime快速搜索符号
详情
安装数量
- 总数 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
Sublime-devdocs
作者:hector
邮箱:[email protected]
Sublime Text 3离线插件中devdocs的快速搜索符号
安装
安装的最简单方法是通过Package Control,其中Sublime-devdocs被列为Devdocs离线
。
使用菜单项
工具 → 命令面板...
打开命令面板
选择
包控制:安装包
找到
Devdocs离线
并按Enter
或者通过下载zip文件,解压并将其放入Sublime的包文件夹中,将其重命名为“Devdocs离线”,这样可能可以正常工作!
如何使用
使用菜单项
工具 → 命令面板...
打开命令面板
选择
Devdocs:所有语言
搜索您需要的语言并按
Enter
。它将从devdocs.io下载语言文档下载后,您可以使用以下命令
命令
Devdocs:所有语言
在面板中显示所有支持的语言及其版本,可以选择安装或卸载语言Devdocs:显示定义
搜索所选符号在匹配的语法中的定义。如果找到,它将在弹出窗口中显示Devdocs:搜索符号
在快速面板中搜索符号,选择项目以显示符号的定义Devdocs:设置默认版本
当语言有多个版本时,为匹配的语法设置默认搜索版本Devdocs:设置语法别名
将匹配的语法设置到哪种语言上,在插件不能识别语法语言时很有用
设置
默认设置
{ // 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":{ } }
如果您想修改设置,请使用菜单项
首选项 → 包设置 → Devdocs 离线 → 设置 – 用户
键
```js
[
{ "keys": ["ctrl+alt+d"], "command": "devdocs_show_definition"},
{ "keys": ["ctrl+alt+s"], "command": "devdocs_search_symbol"},
]
```