From 491ab4bddbe102e9ae11ed475acdfb0992934d80 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 7 Aug 2019 17:05:17 +0200 Subject: [PATCH] Added snippets using and doc. --- snippets/c++-mode/doc | 9 +++++++++ snippets/c++-mode/using | 8 ++++++++ 2 files changed, 17 insertions(+) create mode 100644 snippets/c++-mode/doc create mode 100644 snippets/c++-mode/using diff --git a/snippets/c++-mode/doc b/snippets/c++-mode/doc new file mode 100644 index 0000000..1f7a0f1 --- /dev/null +++ b/snippets/c++-mode/doc @@ -0,0 +1,9 @@ +# -*- mode: snippet -*- +# name: doc +# key: doc +# -- +/*! + * @brief $0 + * + * @since $1 + */ \ No newline at end of file diff --git a/snippets/c++-mode/using b/snippets/c++-mode/using new file mode 100644 index 0000000..6f04025 --- /dev/null +++ b/snippets/c++-mode/using @@ -0,0 +1,8 @@ +# -*- mode: snippet -*- +# name: using std output streams +# key: using +# -- +using std::cout; +using std::cerr; +using std::endl; +$0 \ No newline at end of file