diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-06-25 11:35:07 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-06-25 11:35:07 +0100 |
commit | e2d48b806e0e9719abbee2efff2d1af739979b94 (patch) | |
tree | e1748568e55c500c69d7c199bdfa06aee7fbd86c /nvim/mySnippets/cpp.snippets | |
parent | 2ba9604d198fca427c26cba3e82a1b256c633543 (diff) |
Merge vim and neovim configs
Diffstat (limited to 'nvim/mySnippets/cpp.snippets')
-rw-r--r-- | nvim/mySnippets/cpp.snippets | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/nvim/mySnippets/cpp.snippets b/nvim/mySnippets/cpp.snippets deleted file mode 100644 index d314641..0000000 --- a/nvim/mySnippets/cpp.snippets +++ /dev/null @@ -1,35 +0,0 @@ -snippet print_mat "Print matrix" b -for (unsigned int iii = 0; iii < ${1:mat}.size(); ++iii) { - cout << setw(12) << $1[iii][0]; - for (unsigned int jjj = 1; jjj < $1.size(); ++jjj) { - cout << ", "; - cout << setw(12) << $1[iii][jjj]; - } - cout << endl; -} -$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 - -snippet mat "matrix" i -vector< vector<${1:double}> > $0 -endsnippet |