Browse Source

add custom snippets for php in vim

Weiyi Lou 13 years ago
parent
commit
078be0cf17
1 changed files with 3 additions and 0 deletions
  1. 3 0
      vim/snippets/php.snippets

+ 3 - 0
vim/snippets/php.snippets

@@ -0,0 +1,3 @@
+# useful for debugging arrays
+snippet printpre
+	print_r('<pre>'); print_r($${1:check_variable}); exit;