Created
July 12, 2010 13:41
-
-
Save riethmayer/472469 to your computer and use it in GitHub Desktop.
yasnippet expand-env example
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
| # -*- mode: snippet -*- | |
| # name: html5 document | |
| # key: html5 | |
| # binding: "keybinding" | |
| # expand-env: ((yas/indent-line 'auto) (yas/wrap-around-region 't)) | |
| # -- | |
| <!DOCTYPE html> | |
| <html lang="en-US"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <title>$1</title> | |
| </head> | |
| <body> | |
| $0 | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment