Last active
June 27, 2016 12:41
-
-
Save evanharmon/dbf67f0fdf14abdc04b9616f6577a4ae to your computer and use it in GitHub Desktop.
nvim html snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################### | |
| # 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