This commit is contained in:
Yannick Reiß 2023-09-29 08:16:58 +02:00
parent 96237f9f6c
commit c5fcc9eabb
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
3 changed files with 19 additions and 7 deletions

3
UltiSnips/lisp.snippets Normal file
View File

@ -0,0 +1,3 @@
snippet pack "This is the package." bA
(package! $1)$0
endsnippet

View File

@ -42,7 +42,7 @@ $0
endsnippet endsnippet
snippet ,m "Math equation" A snippet ,m "Math equation" A
\$\$ $1 \$\$ $0 \$$1\$ $0
endsnippet endsnippet
snippet entry "Add new entry" bA snippet entry "Add new entry" bA

View File

@ -1,13 +1,23 @@
snippet addlib "add new library" A snippet addlib "add new library" A
library $1; library $1;
use $1.${2:package}.${3:all}; use $1.${2:`!p
if t[1] == "ieee":
snip.rv = "std_logic_1164"
else:
snip.rv = "package"`}.${3:all};
`!p
if t[1] == "ieee":
snip.rv = "use ieee.numeric_std.all;"
else:
snip.rv = ""`
$0 $0
endsnippet endsnippet
snippet entity "new entity" snippet entity "new entity"
-- Entity $1: ${2:$1} -- Entity $1: ${2:$1}
entity ${1:Name} is entity ${1:Name} is
port($3 port(
$3`!p t[3] = t[3].replace(" : ", "\t:\t").replace("in ", "in\t").replace("out ", "out\t").replace(" ", "\t")`
); );
end $1; end $1;
$0 $0
@ -63,4 +73,3 @@ endsnippet
snippet regflit "reg_idx from literal" iA snippet regflit "reg_idx from literal" iA
std_logic_vector(to_unsigned('${1:Literal}', reg_adr_size)); std_logic_vector(to_unsigned('${1:Literal}', reg_adr_size));
endsnippet endsnippet