]> git.rmz.io Git - dotfiles.git/blobdiff - vim/ultisnips/cpp.snippets
git: verbose commit
[dotfiles.git] / vim / ultisnips / cpp.snippets
index a2a418040c979159f90a5832f2be738f52404071..01138782901648947c77b2dc8a35c5ee602f0285 100644 (file)
@@ -107,3 +107,9 @@ auto ${1:alias}(Args&&... args)
        return ${2:function}(std::forward<Args>(args)...);
 }
 endsnippet
+
+snippet once "#pragma once" b
+#pragma once
+
+${0}
+endsnippet