summaryrefslogtreecommitdiff
path: root/.emacs.d/mysnippets/text-mode/cc-mode/for
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/mysnippets/text-mode/cc-mode/for')
-rw-r--r--.emacs.d/mysnippets/text-mode/cc-mode/for6
1 files changed, 6 insertions, 0 deletions
diff --git a/.emacs.d/mysnippets/text-mode/cc-mode/for b/.emacs.d/mysnippets/text-mode/cc-mode/for
new file mode 100644
index 0000000..c4cade6
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/cc-mode/for
@@ -0,0 +1,6 @@
1#name : for (...; ...; ...) { ... }
2# --
3for (${1:int i = 0}; ${2:i < N}; ${3:++i})
4{
5 $0
6} \ No newline at end of file