Files
dotFiles/home/.local/Apps/neovim-distros/lunarvim/nvim/snippets/php.snippets
T
harish2704 1e905030b4 vim: Added narrow Region
Added my php snippets
2023-09-28 08:27:50 +05:30

9 lines
278 B
Plaintext

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:}