about summary refs log tree commit diff
path: root/sublime/.config/sublime-text-3/Packages/User/cppframe.sublime-snippet
blob: 8401ddf9c0541bbc06f886f5a69827452a762370 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<snippet>
  <content><![CDATA[
#include <iostream>
#include <cstdlib>
#include <string>
using namespace std;

int main(int argc, char **argv){
  $0
  return 0;
}

]]></content>
  <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
  <tabTrigger>cppframe</tabTrigger>
  <!-- Optional: Set a scope to limit where the snippet will trigger -->
  <scope>source.c++</scope>
</snippet>