DocPHPManualer
DocPHPManualer: Show PHP documentation in Sublime Text 3
Details
Installs
- Total 38K
- Win 30K
- Mac 2K
- Linux 6K
May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | Apr 13 | Apr 12 | Apr 11 | Apr 10 | Apr 9 | Apr 8 | Apr 7 | Apr 6 | Apr 5 | Apr 4 | Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 2 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
Mac | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 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 | 1 | 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 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
DocPHPManualer for Sublime Text 3
show the document of current function on Sublime Text
Usage
This package will show a list of available languages after installed, which you may select the one you are using from it. If you want you change language pack later, please use the DocPHP: checkout language
command. All these operations will take a few minutes depends on your Internet connection.
The default hotkeys are ctrl + alt + d
for Show Definition
and ctrl + alt + s
for Search Manual
Note:
DocPHPManualer will generate cache files, which usually located at SUBLIME_PATH/Data/Cache/DocPHPManualer. These cache files should be removed automatically when removing the package.
Settings
{
// Show manual automatically
"auto": false,
// Delay after cursor finish moving, in microseconds
"auto_delay": 500,
// Debug mode
"debug": false,
// Select language
"language": false,
// Select fallback language
"language_fallback": false,
// Available languages
"languages": {},
// Max height and width of popup
"popup_max_height": 1080,
"popup_max_width": 1280,
// Prompt "not found" when symbol not found
// default false because new ST3 version has user-defined symbols prompt
"prompt_when_not_found": false,
// Use the panel on the bottom instead of popup
"use_panel": false
}
Commands
[
{"caption": "DocPHP: Show Definition", "command": "docphp_show_definition"},
{"caption": "DocPHP: Checkout Language", "command": "docphp_checkout_language"},
{"caption": "DocPHP: Select Language", "command": "docphp_select_language"},
{"caption": "DocPHP: Open Manual Index Page", "command": "docphp_open_manual_index"},
{"caption": "DocPHP: Search Manual", "command": "docphp_search"},
]
Hotkeys
[
{ "keys": ["ctrl+alt+d"], "command": "docphp_show_definition"},
{ "keys": ["ctrl+alt+s"], "command": "docphp_search"},
]