This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": ["f4"], "command": "import_namespace" }, | |
{ "keys": ["f5"], "command": "find_use" }, | |
{ "keys": ["f6"], "command": "expand_fqcn" }, | |
{ "keys": ["f7"], "command": "insert_php_constructor_property" }, | |
{ "keys": ["shift+f12"], "command": "goto_definition_scope" }, | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When performing a regex find-and-replace in Sublime Text 2, the following modifiers may be used to change the case of a backreference during the replacement step: | |
\l : first character to lower case | |
\u : first character to upper case | |
\L : start of lower case conversion | |
\U : start of upper case conversion | |
\E : end lower/upper case conversion | |
(Conversion only applies to alpha-characters) |
NewerOlder