ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Java Velocity

by jampow ALL

syntax highlight and snippets for velocity

Details

  • 2015.06.11.00.29.56
  • github.​com
  • github.​com
  • 9 years ago
  • 6 minutes ago
  • 12 years ago

Installs

  • Total 24K
  • Win 14K
  • Mac 6K
  • Linux 4K
Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8
Windows 1 0 0 1 0 0 0 0 0 2 0 0 0 0 2 2 1 0 0 0 1 1 2 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 2 0 0 2 1 0 1
Mac 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 2 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 1 0 1 1

Readme

Source
raw.​githubusercontent.​com

Installation

Gitter

Via Package Control, search for “velocity”

Or paste the repo folder into the <SublimeText2Folder>/Packages

Snippets

  • for - foreach #foreach( $var in $!{colection} ) ... #end
  • param - get url param $!{request.getParameter( 'someparameter' )}
  • host - get host name $!{link.getHost()}
  • if - if structure, without else #if(condition) ... #end
  • ifel - if else structure #if(condition) ... #else ... #end
  • ifparam - if some url param #if($!{request.getParameter( 'someparameter' )}) ... #end
  • el - only an else #else
  • set - set #set( $var = _value_ )
  • read - gets the content of file $_reader.read("path/to/file.ext")
  • $ - use variable $!{var}
  • ! - html comment “”
  • vm - velocity head #!vm;utf-8
  • + - addition $math.add($number, $number)
  • - - subtraction $math.sub($number, $number)
  • * - multiplication $math.mul($number, $number)
  • / - division $math.div($number, $number)
  • debug - html output debug with parameter
  • par - parse #parse("url")
  • exist - return a boolean if file exists $include.exists("filepath")
  • isweb - return a boolean if plataform is web $_userAgent.isWeb()
  • issmart - return a boolean if plataform is smart $_userAgent.isSmart()
  • isfeature - return a boolean if plataform is feature $_userAgent.isFeature()
  • jsontos - velocity object to string $_json.toString(obj)
  • request - return of the url requested $_json.request(url)
  • ept - is empty? .isEmpty()
  • dtformat - date format $date.format("pattern", $date.getSystemTime())
  • sysdate - system date $date.getSystemTime()
  • count - Velocity counter, foreach index $velocityCount
  • .up - Velocity toUpperCase .toUpperCase()
  • .str - converts to string .toString()
  • .ks - Object keys to Array .keySet()
  • st - STOP!!! Hammer time! #stop
  • ctype - set the content type of header's request $response.setContentType("type")