DevDocs offline
Sublime quick search symbol in devdocs
Details
Installs
- Total 788
- Win 414
- Mac 162
- Linux 212
Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Mac | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 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 | 1 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime-devdocs
Author:hector
E-mail:hectorqin@163.com
Quick search symbol in devdocs offline plugin for Sublime Text 3
Installation
The easiest way to install is using Package Control, where Sublime-devdocs is listed as Devdocs offline
.
Open
Command Palette
using menu itemTools → Command Palette...
Choose
Package Control: Install Package
Find
Devdocs offline
and hitEnter
Or install it by downloading the zip, extract it and put it into the package dir of sublime, rename it to “Devdocs offline”, and then it may work fine!
How to use
Open
Command Palette
using menu itemTools → Command Palette...
Choose
Devdocs: All Languages
Search what language you need and hit
Enter
. It will download the language docs from devdocs.ioAfter download, you can use the commands the following
Commands
Devdocs: All Languages
Show all supported language with version in the panel, and choose language to install or uninstallDevdocs: Show Definition
Search the definition of your selected symbol in the syntax matched language. If found, it will be displayed in the popupDevdocs: Search Symbol
Search symbol in a quick panel, choose item to show the definition of symbolDevdocs: Set Default Version
Set the syntax matched language default search version when the language has many versionsDevdocs: Set Syntax Alias
Set the syntax matched to which language, it's useful when the plugin can't identify the language of the syntax
Settings
Default Settings
{ // 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":{ } }
If you want to modify the setting, please use menu item
Preferences → Package Settings → Devdocs offline → Settings – User
keys
```js
[
{ "keys": ["ctrl+alt+d"], "command": "devdocs_show_definition"},
{ "keys": ["ctrl+alt+s"], "command": "devdocs_search_symbol"},
]
```