GotoPhpManual
Open PHP manual for keyword under cursor.
Details
Installs
- Total 240
- Win 133
- Mac 61
- Linux 46
Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 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 | 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 | 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 | 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.