Skip to content

Instantly share code, notes, and snippets.

@evanharmon
Last active June 27, 2016 12:41
Show Gist options
  • Select an option

  • Save evanharmon/dbf67f0fdf14abdc04b9616f6577a4ae to your computer and use it in GitHub Desktop.

Select an option

Save evanharmon/dbf67f0fdf14abdc04b9616f6577a4ae to your computer and use it in GitHub Desktop.
nvim html snippets
###############################################################################
# HTML
###############################################################################
snippet option "option" b
<option value="${1:default}">${2}</option>${0}
endsnippet
###############################################################################
# ANGULAR
###############################################################################
snippet ngmodel "ngModel"
ng-model="${1:controller}.${2:property}"${0}
endsnippet
snippet ngclick "ngClick"
ng-click="${1:controller}.${2:function}"${0}
endsnippet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment