aboutsummaryrefslogtreecommitdiff
path: root/my_snippets/cpp.snippets
blob: f846244942c75deb18f6c1738c8b64fa922946e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
snippet bare "barebone code template"
#include <iostream>
#include <vector>
#include <string>

using std::cout;
using std::endl;
using std::vector;
using std::string;


int main()
{

}
endsnippet

snippet icd "#include directive" b
#include <$1>
$0
endsnippet