summaryrefslogtreecommitdiff
path: root/nvim/mySnippets/cpp.snippets
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/mySnippets/cpp.snippets')
-rw-r--r--nvim/mySnippets/cpp.snippets8
1 files changed, 8 insertions, 0 deletions
diff --git a/nvim/mySnippets/cpp.snippets b/nvim/mySnippets/cpp.snippets
index 5ad9624..cb4c705 100644
--- a/nvim/mySnippets/cpp.snippets
+++ b/nvim/mySnippets/cpp.snippets
@@ -10,6 +10,14 @@ for (unsigned int iii = 0; iii < ${1:mat}.size(); ++iii) {
$0
endsnippet
+snippet forij "Matrix iteration" b
+for (int ${2:i} = 0; $2 < ${1:count}; $2++) {
+ for (int ${4:j} = 0; $4 < $1; $4++) {
+ ${5}
+ }
+}
+endsnippet
+
snippet vec "vector" i
vector<${1:double}> $0
endsnippet