]> git.rmz.io Git - dotfiles.git/blobdiff - vim/ultisnips/c.snippets
mutt: fix F macro to not write message to home
[dotfiles.git] / vim / ultisnips / c.snippets
index 864d0cae9cc2cd8626d5704bff669607e167d73d..c54b875fedfb4913034ba8f05a00bdf3772a3301 100644 (file)
@@ -26,3 +26,9 @@ if (${1:/* condition */}) {
        ${3:/* else */}
 }
 endsnippet
+
+snippet clangformat "Disable clang-format"
+// clang-format off
+${VISUAL}${0}
+// clang-format on
+endsnippet