summaryrefslogtreecommitdiff
path: root/vim/mySnippets/cpp.snippets
diff options
context:
space:
mode:
Diffstat (limited to 'vim/mySnippets/cpp.snippets')
-rw-r--r--vim/mySnippets/cpp.snippets10
1 files changed, 10 insertions, 0 deletions
diff --git a/vim/mySnippets/cpp.snippets b/vim/mySnippets/cpp.snippets
index e69de29..62c1faa 100644
--- a/vim/mySnippets/cpp.snippets
+++ b/vim/mySnippets/cpp.snippets
@@ -0,0 +1,10 @@
+snippet print_mat "Print matrix" b
+for (unsigned int iii = 0; iii < ${0:mat}.size(); ++iii) {
+ cout << setw(12) << mat[iii][0];
+ for (unsigned int jjj = 1; jjj < mat.size(); ++jjj) {
+ cout << ", ";
+ cout << setw(12) << mat[iii][jjj];
+ }
+ cout << endl;
+}
+endsnippet