Improved C++ snip

This commit is contained in:
ujihisa 2012-10-15 23:05:24 -07:00
parent 776b5801a3
commit b5afaa3363
2 changed files with 11 additions and 0 deletions

View File

@ -63,3 +63,13 @@ abbr const_cast<>()
snippet dynamic_cast
abbr dynamic_cast<>()
dynamic_cast<${1}>(${2})${0}
snippet helloworld
abbr #include<iostream>\nint main...
#include <iostream>
int main(int argc, char const* argv[])
{
using namespace std;
cout << "hello, world!" << endl;
return 0;
}

View File

@ -411,6 +411,7 @@ CHANGELOG *neosnippet-changelog*
2012-10-15
- Improved lua snip.
- Improved c++ snip.
2012-10-07
- Improved vim snip.