GotoPhpManual
A Sublime Text plugin for jumping to tags in the PHP Manual.
Details
Installs
- Total 39
- Win 23
- Mac 9
- Linux 7
Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 2 | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Mac | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Goto PHP Manual
A Sublime Text plugin for jumping to the PHP Manual for the current symbol.
Put your cursor on a php symbol and press f1
or shift+f1
to open the php manual in your browser.
Handy if you need the php manual when working offline.
Installation
Install GotoPhpManual via Package Control.
Setup
Local PHP Manual
To use a local php manual, download the manual, the “Many HTML files” tarball, unpack it somewhere, and set the location:
"goto_php_manual.path": "~/manuals/php",
If you use the GotoDocumentation plugin and use f1
for it, then add a context exclude for PHP scope: Menu → Preferences → Key Bindings:
{
"keys": ["f1"],
"command": "goto_documentation",
"context": [
{
"key": "selector",
"operator": "equal",
"operand": "-embedding.php",
"match_all": true
}
]
},
If you use NeoVintageous, disable the f1
and shift+f1
keys.
Menu → Preferences → Settings
"vintageous_handle_keys": {
"<f1>": false,
"<S-f1>": false,
},
Read configuring the NeoVintageous sublime vim key handler for a short guide on configuring the vim key handler in sublime.
Key Bindings
Key | Description |
---|---|
f1 |
Goto local manual or remote manual. |
shift+f1 |
Goto remote manual |
Settings
Menu → 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 |
License
Released under the GPL-3.0-or-later License.