From 0d8e32fe38614f44612546698d59ca56bfc4f964 Mon Sep 17 00:00:00 2001 From: ujihisa Date: Tue, 9 Jul 2013 18:29:35 -0700 Subject: [PATCH] Improve C snip; removing trivial comment --- autoload/neosnippet/snippets/c.snip | 3 --- 1 file changed, 3 deletions(-) diff --git a/autoload/neosnippet/snippets/c.snip b/autoload/neosnippet/snippets/c.snip index 49e60ff..a36fc12 100644 --- a/autoload/neosnippet/snippets/c.snip +++ b/autoload/neosnippet/snippets/c.snip @@ -114,7 +114,6 @@ abbr include-guard snippet conditional (${1:#:condition}) ? ${2:#:a} : ${3:#:b} -# Typedef snippet typedef typedef ${1:#:base_type} ${2:#:custom_type}; @@ -143,14 +142,12 @@ snippet helloworld return 0; } -# fopen snippet fopen abbr fopen("...", "..."); fopen("${1:PATH}", "${2:MODE}"); ${0:TARGET} fclose(${3:FD}); -# fgets snippet fgets abbr fgets(row, length, file); fgets(${0:ROW}, ${1:LENGTH}, ${2:FILE});