Mercurial > dotfiles.old
view vim/snippets/vhdl.snip @ 212:aba6fdee2489
Center windows in single display mode
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sat, 29 Nov 2014 18:25:35 +0100 |
parents | 1f0d12295ba5 |
children |
line wrap: on
line source
snippet entity abbr entity options head entity ${1:name} is port( ${2} ); end entity $1; snippet architecture abbr architecture options head architecture ${1:arch} of ${2:name} is ${4} begin ${4} end architecture $1; snippet process abbr process options head process(${1:args}) is ${2} end process; snippet case abbr case options head case ${1:var} is ${2} end case; snippet when abbr when options head when ${1:option} => ${2} snippet if abbr if options head if ${1:value} then ${2} end if;