diff options
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/mySnippets/cpp.snippets | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nvim/mySnippets/cpp.snippets b/nvim/mySnippets/cpp.snippets index cb4c705..d314641 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 print_vec "Print vector" b +for (unsigned int iii = 0; iii < ${1:mat}.size(); ++iii) { + cout << setw(12) << $1[iii]; + cout << endl; +} +$0 +endsnippet + snippet forij "Matrix iteration" b for (int ${2:i} = 0; $2 < ${1:count}; $2++) { for (int ${4:j} = 0; $4 < $1; $4++) { |