about summary refs log tree commit diff
path: root/sublime/.config/sublime-text-3/Packages/User/pprintvars.sublime-snippet
blob: 0de698bddec9bfde8d24fc7d4db12a576e372e8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<snippet>
  <content><![CDATA[
echo '<pre>$1 Dump ';
print_r(${1:get_defined_vars()});
echo '</pre>';
]]></content>
  <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
  <tabTrigger>pprintvars</tabTrigger>
  <!-- Optional: Set a scope to limit where the snippet will trigger -->
  <scope>source.php</scope>
</snippet>