diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-05-30 18:20:37 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-05-30 18:20:37 +0100 |
commit | 2704384c10aa5897914beea55fd31a82d78dbd2b (patch) | |
tree | a44684078d0636564fac8a19e62ddd4c6f9f2c18 /nvim/mySnippets | |
parent | 29a8d8da231e3ffdfff90dbc12a772b4dbedac7b (diff) |
minor changes
Diffstat (limited to 'nvim/mySnippets')
-rw-r--r-- | nvim/mySnippets/cpp.snippets | 8 | ||||
-rw-r--r-- | nvim/mySnippets/mail.snippets | 4 |
2 files changed, 11 insertions, 1 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 diff --git a/nvim/mySnippets/mail.snippets b/nvim/mySnippets/mail.snippets index c512f9b..9839916 100644 --- a/nvim/mySnippets/mail.snippets +++ b/nvim/mySnippets/mail.snippets @@ -15,7 +15,9 @@ ${3:Urbain} endsnippet snippet sign "Signature" b -Urbain Vaes, +Best wishes, + +Urbain Vaes Department of Mathematics Office 6M09 endsnippet |