vim: Added narrow Region

Added my php snippets
This commit is contained in:
2023-09-28 08:27:50 +05:30
parent 1dbf687596
commit 1e905030b4
4 changed files with 14 additions and 3 deletions
@@ -0,0 +1,8 @@
snippet jd "json dump and die"
echo json_encode(${1}, JSON_PRETTY_PRINT); die();${0:}
snippet pjd "json dump and die"
echo '<pre>';echo json_encode(${1}, JSON_PRETTY_PRINT); echo '</pre>'; die();${0:}
snippet ppbt
echo '<pre>'; debug_print_backtrace(); echo '</pre>';${0:}