VI插件——snipMate [语法结构补全]

" main                   -- C/C++语言 main 函数
" inc                    -- #include <>
" iinc                   -- #include ""
" incs                   -- #include <stdio.h> or #include <iostream>
" using                  -- using namespace std;
" def                    -- #define
" un                     -- unsigned
" re                     -- return
" p                      -- printf("\n");
" s                      -- scanf("");
" fpr                    -- fprintf(abc, "\n");
" if                     -- if(){}
" elif                   -- elseif(){}
" el                     -- else{}
" t                      -- a ? b : c
" do                     -- do{}while();
" wh                     -- while(){}
" for                    -- for(){}
" forr                   -- for(i = 0; i < 10; i++){}
" cl                     -- class abc{};
" fun                    -- void abc(){}
" fund                   -- void abc();
" td                     -- typedef a b;
" st                     -- struct abc{};
" tds                    -- typedef struct _abc{}abc;
" tde                    -- typedef enum{};
" .                      -- []

你可能感兴趣的:(c,struct,Class,语言,iostream,fun)