aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-snippets/snippets/autoit.snippets
diff options
context:
space:
mode:
Diffstat (limited to 'vim/bundle/vim-snippets/snippets/autoit.snippets')
m---------vim/bundle/vim-snippets0
-rw-r--r--vim/bundle/vim-snippets/snippets/autoit.snippets66
2 files changed, 0 insertions, 66 deletions
diff --git a/vim/bundle/vim-snippets b/vim/bundle/vim-snippets
new file mode 160000
+Subproject 15d7e5ec26ec93adee4051b6359be90a943aa38
diff --git a/vim/bundle/vim-snippets/snippets/autoit.snippets b/vim/bundle/vim-snippets/snippets/autoit.snippets
deleted file mode 100644
index f973fbc..0000000
--- a/vim/bundle/vim-snippets/snippets/autoit.snippets
+++ /dev/null
@@ -1,66 +0,0 @@
-snippet if
- If ${1:condition} Then
- ${0:; True code}
- EndIf
-snippet el
- Else
- ${0}
-snippet eif
- ElseIf ${1:condition} Then
- ${0:; True code}
-# If/Else block
-snippet ife
- If ${1:condition} Then
- ${2:; True code}
- Else
- ${0:; Else code}
- EndIf
-# If/ElseIf/Else block - because there is eif this is not really neccessary
-snippet ifelif
- If ${1:condition 1} Then
- ${2:; True code}
- ElseIf ${3:condition 2} Then
- ${4:; True code}
- Else
- ${0:; Else code}
- EndIf
-# Switch block
-snippet switch
- Switch (${1:condition})
- Case ${2:case1}:
- ${3:; Case 1 code}
- Case Else:
- ${0:; Else code}
- EndSwitch
-# Select block
-snippet select
- Select (${1:condition})
- Case ${2:case1}:
- ${3:; Case 1 code}
- Case Else:
- ${0:; Else code}
- EndSelect
-# While loop
-snippet wh
- While (${1:condition})
- ${0:; code...}
- WEnd
-# For loop
-snippet for
- For ${1:n} = ${3:1} to ${2:count}
- ${0:; code...}
- Next
-# New Function
-snippet func
- Func ${1:fname}(${2:`indent('.') ? 'self' : ''`}):
- ${0:Return}
- EndFunc
-# Message box
-snippet msg
- MsgBox(${0:MsgType}, ${1:"Title"}, ${2:"Message Text"})
-# Debug Message
-snippet debug
- MsgBox(0, "Debug", ${0:"Debug Message"})
-# Show Variable Debug Message
-snippet showvar
- MsgBox(0, "${0:VarName}", $1)