vimrc updates
[dotfiles.git] / .vim / mysnippets / vhdl.snippets
1
2 snippet entity "Entity" w
3 Entity $1 is port  
4 (
5         $0
6 )
7 end Entity;
8 endsnippet