To install through Package Control, search for ASP Snippets. If you still don't have Package Control in Sublime Text, go get it. It's pure awesomeness.
If you insist to not install it, you can download the package and put it manually inside your Packages
directory. It should work but will not update automatically.
if ${1:false} then
${2}
end if
if ${1:false} then
${2}
else
${3}
end if
do while ${1:false}
${2}
loop
if ${1:false} then
${2}
elseif ${3:false} then
${4}
end if
set ${1} = ${2}
dim ${1} = ${2}
response.write ${1}
response.redirect "${1}"
response.clear
response.end
request.querystring("${1}")
request.form("${1}")
for ${1:i = 0} to ${2}
${3}
next
for each ${1:var} in ${2}
${3}
next
class ${1}
private sub class_initialize
${2}
end sub
${3}
end class
public property let ${1}(${2})
${3}
end property
public property get ${1}()
${2}
end property
public property set ${1}(${2})
${3}
end property
sub ${1}(${2})
${3}
end sub
public sub ${1}(${2})
${3}
end sub
private sub ${1}(${2})
${3}
end sub
function ${1}(${2})
${3}
end function
public function ${1}(${2})
${3}
end function
private function ${1}(${2})
${3}
end function
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -m 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Check Release list.
MIT License © Marcos Paulo