The ultimate Vim configuration: vimrc
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Angular HTML
|
|
snippet rep
|
|
div(ng-repeat='${1} in ${2}')
|
|
|
|
snippet repf
|
|
div(ng-repeat='${1} in ${2}' | ${3})
|
|
|
|
snippet repi
|
|
div(ng-repeat='${1} in ${2}' track by $index)
|
|
|
|
snippet hide
|
|
div(ng-hide='${1}')
|
|
|
|
snippet show
|
|
div(ng-show='${1}')
|
|
|
|
snippet if
|
|
div(ng-if='${1}')
|
|
|