File: jade.snippets

package info (click to toggle)
vim-snippets 1.0.0-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 900 kB
  • sloc: python: 9; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 272 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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}')