Browse Source

add custom snippets for php in vim

Weiyi Lou 13 năm trước cách đây
mục cha
commit
078be0cf17
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  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;