view vim/snippets/vhdl.snip @ 192:6df73555c3a7

Add terminal colours
author zegervdv <zegervdv@me.com>
date Sun, 09 Nov 2014 16:47:01 +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;