diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-05-30 23:17:46 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-05-30 23:17:46 +0100 |
commit | 25da277ab11e92bab8d27ae29ffd621be71cd56c (patch) | |
tree | 5e38f7a2e40b677bf741aadae743d13e434da466 /nvim | |
parent | 1a10bbc712c64539ee9e0c73a4b360417449e208 (diff) | |
parent | 2704384c10aa5897914beea55fd31a82d78dbd2b (diff) |
Merge branch 'master' of github.com:uvaes/dotfiles
Conflicts:
mutt/alias
nvim/mySnippets/cpp.snippets
Diffstat (limited to 'nvim')
-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 4c9c567..d314641 100644 --- a/nvim/mySnippets/cpp.snippets +++ b/nvim/mySnippets/cpp.snippets @@ -18,6 +18,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 |