diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-06-03 18:12:03 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-06-03 18:12:03 +0100 |
commit | 4d14de712eae7d9567ad6eb94731fb547872b8a3 (patch) | |
tree | f742dd55dcc72af50b6a7c4552a45804a19dbba7 /nvim/mySnippets/cpp.snippets | |
parent | 4654d5c27926796979bdcf447a89e79a29eedac3 (diff) | |
parent | 7344312c66b8d7f90a741dcf5a6a14b86c2f9c42 (diff) |
Merge branch 'master' of https://github.com/uvaes/dotfiles
Conflicts:
vimrc
Diffstat (limited to 'nvim/mySnippets/cpp.snippets')
-rw-r--r-- | nvim/mySnippets/cpp.snippets | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nvim/mySnippets/cpp.snippets b/nvim/mySnippets/cpp.snippets index 5ad9624..d314641 100644 --- a/nvim/mySnippets/cpp.snippets +++ b/nvim/mySnippets/cpp.snippets @@ -10,6 +10,22 @@ 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++) { + ${5} + } +} +endsnippet + snippet vec "vector" i vector<${1:double}> $0 endsnippet |