GotoPhpManual
Open PHP manual for keyword under cursor.
Details
Installs
- Total 203
- Win 115
- Mac 51
- Linux 37
Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 2 | 1 |
Mac | 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 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 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 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Goto PHP Manual
A Sublime Text commands that open the PHP Manual for a keyword or symbol.
How to use
Place your cursor on a PHP keyword or symbol and press f1
to open the local PHP manual (if configured), or shift+f1
to open the online PHP manual.
How to setup a local PHP Manual
Download the PHP manual, pick the “many HTML files” tar.gz, and unpack it.
Set the PHP manual path of your unpacked local manual.
Command Palette → Preferences: Settings
"goto_php_manual.path": "~/php-manual/php-chunked-xhtml",
If you use NeoVintageous
Disable the f1
and shift+f1
keys.
Command Palette → Preferences: Settings
"vintageous_handle_keys": {
"<f1>": false,
"<S-f1>": false,
},
For more information on configuring NeoVintageous see configuring the NeoVintageous key handler.
If you use GotoDocumentation
If you use GotoDocumentation and also use the f1
key binding, then add a context exclude for the PHP scope so that f1
passes through to Goto PHP Manual.
Command Palette → Preferences → Key Bindings
{
"keys": ["f1"],
"command": "goto_documentation",
"context": [
{
"key": "selector",
"operator": "equal",
"operand": "-embedding.php",
"match_all": true
}
]
},
Key Bindings
Key | Description |
---|---|
f1 |
Open local PHP manual with fallback to online PHP manual. |
shift+f1 |
Open online PHP manual. |
Settings
Command Palette → Preferences: Settings
Setting | Description | Type | Default |
---|---|---|---|
goto_php_manual.path |
Path to local php manual. | string |
null |
goto_php_manual.keymaps |
Enable keymaps. | bool |
true |
Installation
Install GotoPhpManual via Package Control.
License
Released under the GPL-3.0-or-later License.