You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i add [ let g:phpfmt_psr2 = 1 ] in .vimrc
The plugin will not work .
I found that reason is the finaly command will be
php /path/to/fmt.phar FILE --psr2
that is not work .
the correct command line should be
php /path/to/fmt.phar --psr2 FILE
The text was updated successfully, but these errors were encountered:
When i add [ let g:phpfmt_psr2 = 1 ] in .vimrc
The plugin will not work .
I found that reason is the finaly command will be
php /path/to/fmt.phar FILE --psr2
that is not work .
the correct command line should be
php /path/to/fmt.phar --psr2 FILE
The text was updated successfully, but these errors were encountered: