From 22807acab260628f203b90dc70a184ff00efe19e Mon Sep 17 00:00:00 2001 From: BardofSprites <89086143+BardofSprites@users.noreply.github.com> Date: Fri, 28 Nov 2025 16:02:49 -0500 Subject: snippets --- snippets/c++-mode/for | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 snippets/c++-mode/for (limited to 'snippets/c++-mode/for') diff --git a/snippets/c++-mode/for b/snippets/c++-mode/for new file mode 100644 index 0000000..e60b0df --- /dev/null +++ b/snippets/c++-mode/for @@ -0,0 +1,8 @@ +# -*- mode: snippet -*- +# name: for loop +# key: for +# -- + +for(int $1 = 0; $1 < $3; $1++) { + $4 +} -- cgit v1.2.3