]> git.madduck.net Git - etc/vim.git/blobdiff - .vim/snippets/c.snippets

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

use provided python snippets
[etc/vim.git] / .vim / snippets / c.snippets
deleted file mode 100644 (file)
index 89b81ba62d26b69b6885e319b1b08353f651d04f..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1,110 +0,0 @@
-# main()
-snippet main
-       int main(int argc, const char *argv[])
-       {
-               ${1}
-               return 0;
-       }
-# #include <...>
-snippet inc
-       #include <${1:stdio}.h>${2}
-# #include "..."
-snippet Inc
-       #include "${1:`Filename("$1.h")`}"${2}
-# #ifndef ... #define ... #endif
-snippet Def
-       #ifndef $1
-       #define ${1:SYMBOL} ${2:value}
-       #endif${3}
-snippet def
-       #define 
-snippet ifdef
-       #ifdef ${1:FOO}
-               ${2:#define }
-       #endif
-snippet #if
-       #if ${1:FOO}
-               ${2}
-       #endif
-# Header Include-Guard
-# (the randomizer code is taken directly from TextMate; it could probably be
-# cleaner, I don't know how to do it in vim script)
-snippet once
-       #ifndef ${1:`toupper(Filename('', 'UNTITLED').'_'.system("/usr/bin/ruby -e 'print (rand * 2821109907455).round.to_s(36)'"))`}
-
-       #define $1
-
-       ${2}
-
-       #endif /* end of include guard: $1 */
-# If Condition
-snippet if
-       if (${1:/* condition */}) {
-               ${2:/* code */}
-       }
-snippet el
-       else {
-               ${1}
-       }
-# Tertiary conditional
-snippet t
-       ${1:/* condition */} ? ${2:a} : ${3:b}
-# Do While Loop
-snippet do
-       do {
-               ${2:/* code */}
-       } while (${1:/* condition */});
-# While Loop
-snippet wh
-       while (${1:/* condition */}) {
-               ${2:/* code */}
-       }
-# For Loop
-snippet for
-       for (${2:i} = 0; $2 < ${1:count}; $2${3:++}) {
-               ${4:/* code */}
-       }
-# Custom For Loop
-snippet forr
-       for (${1:i} = ${2:0}; ${3:$1 < 10}; $1${4:++}) {
-               ${5:/* code */}
-       }
-# Function
-snippet fun
-       ${1:void} ${2:function_name}(${3})
-       {
-               ${4:/* code */}
-       }
-# Function Declaration
-snippet fund
-       ${1:void} ${2:function_name}(${3});${4}
-# Typedef
-snippet td
-       typedef ${1:int} ${2:MyCustomType};${3}
-# Struct
-snippet st
-       struct ${1:`Filename('$1_t', 'name')`} {
-               ${2:/* data */}
-       }${3: /* optional variable list */};${4}
-# Typedef struct
-snippet tds
-       typedef struct ${2:_$1 }{
-               ${3:/* data */}
-       } ${1:`Filename('$1_t', 'name')`};
-# Typdef enum
-snippet tde
-       typedef enum {
-               ${1:/* data */}
-       } ${2:foo};
-# printf
-# unfortunately version this isn't as nice as TextMates's, given the lack of a
-# dynamic `...`
-snippet pr
-       printf("${1:%s}\n"${2});${3}
-# fprintf (again, this isn't as nice as TextMate's version, but it works)
-snippet fpr
-       fprintf(${1:stderr}, "${2:%s}\n"${3});${4}
-snippet .
-       [${1}]${2}
-snippet un
-       unsigned
new file mode 120000 (symlink)
index 0000000000000000000000000000000000000000..8cdc857071d666b776c3d25e83c3294dbbdd76d2
--- /dev/null
@@ -0,0 +1 @@
+/usr/share/vim/addons/snippets/c.snippets
\ No newline at end of file