PHPGrammar
PHP macros for Sublime Text.
Details
Installs
- Total 57K
- Win 42K
- Mac 6K
- Linux 9K
Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | Jul 4 | Jul 3 | Jul 2 | Jul 1 | Jun 30 | Jun 29 | Jun 28 | Jun 27 | Jun 26 | Jun 25 | Jun 24 | Jun 23 | Jun 22 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 1 | 1 | 0 | 3 | 1 | 1 | 0 | 3 | 3 | 2 | 1 | 1 | 0 | 1 | 0 | 0 | 3 | 3 | 3 | 5 | 0 | 0 | 0 | 1 | 2 | 0 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
WHAT PHPGRAMMAR IS
An improved PHP syntax, good indentation rules, smart macros, and more.
Completions and snippets are provided separately by PHP Completions Kit and PHP Snippets.
INSTALLATION
Package Control installation
The preferred method of installation is Package Control.
Manual installation
Close Sublime Text, then download or clone this repository to a directory named PHPGrammar in the Sublime Text Packages directory for your platform:
OS | Command
– | —–
Linux | git clone https://github.com/gerardroche/sublime-php-grammar.git ~/.config/sublime-text-3/Packages/PHPGrammar
OSX | git clone https://github.com/gerardroche/sublime-php-grammar.git ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/PHPGrammar
Windows | git clone https://github.com/gerardroche/sublime-php-grammar.git %APPDATA%\Sublime/ Text/ 3/Packages/PHPGrammar
USAGE
Smart macros
To insert any literal character add Shift
e.g. in a case where Enter
runs a macro, to insert a newline on Enter
(instead of running the macro) press Shift+Enter
.
On Ctrl+Enter
<?php
array( // array(
'str|' // 'str',
) // |
// )
<?php
'str|ing' // 'string';
// |
<?php
function_call(|) // function_call();
// |
<?php
if ($condition|) // if ($condition) {
// |
// }
<?php
foreach ($x => $y|) // foreach ($x => $y) {
// |
// }
<?php
while ($condition|) // while ($condition) {
// |
// }
<?php
for ($i = 0; $i < ; $i++|) // for ($i = 0; $i < ; $i++) {
// |
// }
<?php
switch ($condition|) // switch ($condition) {
// |
// }
<?php
function x(|) // function x()
// {
// |
// }
<?php
class x // class x
{ // {
public function y(|) // public function y()
} // {
// |
// }
// }
On Ctrl+;
'str|ing' // 'string';|
<?php
function_call(|) // function_call();|
On Enter
array(|) // array(
// |
// )
<?php
function_call(|) // function_call(
// |
// )
<?php
new class_name(|) // new class_name(
// |
// )
On Tab
$arr = array( // $arr = array(
'str|' // 'str' => |
) // )
<?php
$arr = array( // $arr = array(
'str'| // 'str' => |
) // )
On [
$arr = | // $arr = [|];
On ]
$arr = [| // $arr = [|];
CONTRIBUTING
See CONTRIBUTING.md.
LICENSE
Released under the BSD 3-Clause License.