Merge pull request #167 from boxp/master

Added snippet alias (fopen,fgets)
This commit is contained in:
Shougo 2013-07-08 22:08:21 -07:00
commit 9f791435a9
1 changed files with 9 additions and 0 deletions

View File

@ -143,3 +143,12 @@ snippet helloworld
return 0;
}
# fopen
snippet fopen
abbr fopen("...", "...");
fopen("${0:TARGET}", "${1:MODE}");
# fgets
snippet fgets
abbr fgets(row, length, file);
fgets(${0:ROW}, ${1:LENGTH}, ${2:FILE});