Sublime Hugo Snippets
Installation instructions
Controle de Pacote: Instale o Pacote e procure Hugo Snippets
$ cd ~/Library/Application Support/Sublime Text 3/Packages/User
$ git clone [email protected]:regisphilibert/Sublime-Hugo-Snippets.git
$ cd ~/.config/sublime-text-3/Packages/User
$ git clone [email protected]:regisphilibert/Sublime-Hugo-Snippets.git
Trecho | Gatilho de guia | Saída |
---|---|---|
Encaracolados | x | {{ }} |
Ponto | ponto | {{ . }} |
Se | se | {{ if }} {{ end }} |
Se/outro | se for | {{ if }} {{ else }} {{ end }} |
Se/outro se | Ifei | {{ if }} {{ else if }} {{ end }} |
Com | com | {{ with }} {{ end }} |
Com/outro | com | {{ with }} {{ else }} {{ end }} |
Faixa | faixa | {{ range }} {{ end }} |
Parcial | parcial | {{ partial "" . }} |
Bloquear | bloquear | {{ block "main" . }} {{ end }} |
Definir bloco | definir | {{ define "block" }} {{ end }} |
Variável | vars | {{ $var := what }} |
Depurar | depurar | {{ printf "%#v" }} |
Comentário | comunicação | {{/* */}} |