From 1a10bbc712c64539ee9e0c73a4b360417449e208 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sat, 30 May 2015 23:14:48 +0100 Subject: new cpp snippet --- nvim/mySnippets/cpp.snippets | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'nvim') diff --git a/nvim/mySnippets/cpp.snippets b/nvim/mySnippets/cpp.snippets index 5ad9624..4c9c567 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 vec "vector" i vector<${1:double}> $0 endsnippet -- cgit v1.2.3