]> git.madduck.net Git - etc/vim.git/blobdiff - .vim/snippets/autoit.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:

remove snippets
[etc/vim.git] / .vim / snippets / autoit.snippets
diff --git a/.vim/snippets/autoit.snippets b/.vim/snippets/autoit.snippets
deleted file mode 100644 (file)
index 690018c..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-snippet if
-       If ${1:condition} Then
-               ${2:; True code}
-       EndIf
-snippet el
-       Else
-               ${1}
-snippet elif
-       ElseIf ${1:condition} Then
-               ${2:; True code}
-# If/Else block
-snippet ifel
-       If ${1:condition} Then
-               ${2:; True code}
-       Else
-               ${3:; Else code}
-       EndIf
-# If/ElseIf/Else block
-snippet ifelif
-       If ${1:condition 1} Then
-               ${2:; True code}
-       ElseIf ${3:condition 2} Then
-               ${4:; True code}
-       Else
-               ${5:; Else code}
-       EndIf
-# Switch block
-snippet switch
-       Switch (${1:condition})
-       Case {$2:case1}:
-               {$3:; Case 1 code}
-       Case Else:
-               {$4:; Else code}
-       EndSwitch
-# Select block
-snippet select
-       Select (${1:condition})
-       Case {$2:case1}:
-               {$3:; Case 1 code}
-       Case Else:
-               {$4:; Else code}
-       EndSelect
-# While loop
-snippet while
-       While (${1:condition})
-               ${2:; code...}
-       WEnd
-# For loop
-snippet for
-       For ${1:n} = ${3:1} to ${2:count}
-               ${4:; code...}
-       Next
-# New Function
-snippet func
-       Func ${1:fname}(${2:`indent('.') ? 'self' : ''`}):
-               ${4:Return}
-       EndFunc
-# Message box
-snippet msg
-       MsgBox(${3:MsgType}, ${1:"Title"}, ${2:"Message Text"})
-# Debug Message
-snippet debug
-       MsgBox(0, "Debug", ${1:"Debug Message"})
-# Show Variable Debug Message
-snippet showvar
-       MsgBox(0, "${1:VarName}", $1)