-
Notifications
You must be signed in to change notification settings - Fork 34
/
Default.sublime-commands
30 lines (24 loc) · 1.98 KB
/
Default.sublime-commands
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[
{"caption": "phpfmt: format now", "command": "fmt_now"},
{"caption": "phpfmt: indentation with spaces", "command": "indent_with_spaces"},
{"caption": "phpfmt: toggle additional transformations", "command": "toggle_pass_menu" },
{"caption": "phpfmt: toggle excluded transformations", "command": "toggle_exclude_menu" },
{"caption": "phpfmt: toggle skip execution when .php.tools.ini is missing", "command": "toggle", "args": {"option":"skip_if_ini_missing"}},
{"caption": "phpfmt: toggle autocomplete", "command": "toggle", "args": {"option":"autocomplete"}},
{"caption": "phpfmt: toggle dependency autoimport", "command": "toggle", "args": {"option":"autoimport"}},
{"caption": "phpfmt: toggle format on save", "command": "toggle", "args": {"option":"format_on_save"}},
{"caption": "phpfmt: toggle PSR1 - Class and Methods names", "command": "toggle", "args": {"option":"psr1_naming"}},
{"caption": "phpfmt: toggle PSR1", "command": "toggle", "args": {"option":"psr1"}},
{"caption": "phpfmt: toggle PSR2", "command": "toggle", "args": {"option":"psr2"}},
{"caption": "phpfmt: analyse this", "command": "analyse_this"},
{"caption": "phpfmt: build autocomplete database", "command": "build_oracle"},
{"caption": "phpfmt: getter and setter (camelCase)", "command": "sgter_camel"},
{"caption": "phpfmt: getter and setter (Go)", "command": "sgter_go"},
{"caption": "phpfmt: getter and setter (snake_case)", "command": "sgter_snake"},
{"caption": "phpfmt: generate PHPDoc block", "command": "generate_phpdoc"},
{"caption": "phpfmt: look for .php.tools.ini", "command": "toggle", "args": {"option":"readini"}},
{"caption": "phpfmt: reorganize content of class", "command": "order_method"},
{"caption": "phpfmt: enable/disable additional transformations", "command": "toggle_pass_menu" },
{"caption": "phpfmt: troubleshoot information", "command": "debug_env"},
{"caption": "phpfmt: update PHP binary path", "command": "update_php_bin"}
]