X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/bfa7a2383b6e7742a6659578f4cc1f0ccee5a184..3c994c1538d63b0b2cf154dd1f246d6d80ee0e64:/vim/ultisnips/c.snippets diff --git a/vim/ultisnips/c.snippets b/vim/ultisnips/c.snippets index c54b875..62824bc 100644 --- a/vim/ultisnips/c.snippets +++ b/vim/ultisnips/c.snippets @@ -32,3 +32,11 @@ snippet clangformat "Disable clang-format" ${VISUAL}${0} // clang-format on endsnippet + +snippet nolintnl "Disable clang-tiny diagnostic on next line" b +//NOLINTNEXTLINE(${0}) +endsnippet + +snippet nolint "Disable clang-tiny diagnostic" +NOLINT(${0}) +endsnippet