ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Goto​Php​Manual

by gerardroche ST3

Open PHP manual for keyword under cursor.

Details

Installs

  • Total 247
  • Win 139
  • Mac 61
  • Linux 47
Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22
Windows 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0
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 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 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.