Explorar el Código

add var_dump snippet for php in vim

Weiyi Lou hace 13 años
padre
commit
b38240e02c
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      vim/snippets/php.snippets

+ 2 - 0
vim/snippets/php.snippets

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