lspconfig - add snippet support, fix css

This commit is contained in:
Ray Elliott 2021-09-19 13:01:52 +01:00
commit b3e1ce732b
5 changed files with 57 additions and 52 deletions

View file

@ -1,3 +1,15 @@
snippet pp "<?php ... ?>"
<?php $0; ?>
endsnippet
snippet pe "<?php ... ?>"
<?php echo "$0"; ?>
endsnippet
snippet ph "<?php ... ?>"
<?php esc_html( $0 ); ?>
endsnippet
snippet pf "public function ..."
public function $1($2) {
$0