Update
This commit is contained in:
parent
4d3800a027
commit
23d1e0deb1
|
@ -100,7 +100,16 @@ else:
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet type "declare a new type" bA
|
snippet type "declare a new type" bA
|
||||||
type ${1:TypeName} is ${2:array($3..$4)} of ${5:Integer};$0
|
type ${1:TypeName} is ${2:array($3..$4) of }`!p
|
||||||
|
if t[2] == "record":
|
||||||
|
snip.rv = "\n\t\t"
|
||||||
|
else:
|
||||||
|
snip.rv = ""`$5`!p
|
||||||
|
if t[2] == "record":
|
||||||
|
snip.rv = "\n\tend record"
|
||||||
|
else:
|
||||||
|
snip.rv = ""
|
||||||
|
`;$0
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet docstring "Document String with most important infor" b
|
snippet docstring "Document String with most important infor" b
|
||||||
|
@ -109,3 +118,13 @@ snippet docstring "Document String with most important infor" b
|
||||||
-- Author(s): ${1:Yannick Reiß}
|
-- Author(s): ${1:Yannick Reiß}
|
||||||
-- Content: ${2: Function `!p snip.rv = fn.split('.')[0]`}
|
-- Content: ${2: Function `!p snip.rv = fn.split('.')[0]`}
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
|
snippet project "Project" b
|
||||||
|
project ${1:Default} is
|
||||||
|
for Source_Dirs use ("${2:src}");
|
||||||
|
for Object_Dir use "${3:obj}";
|
||||||
|
for Exec_Dir use "${4:bin}";
|
||||||
|
for Main use ("${5:main.adb}");
|
||||||
|
for Languages use ("Ada");
|
||||||
|
end $1;
|
||||||
|
endsnippet
|
||||||
|
|
|
@ -49,6 +49,13 @@ $1
|
||||||
$0
|
$0
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
|
snippet cjson "json code"
|
||||||
|
\`\`\`json
|
||||||
|
$1
|
||||||
|
\`\`\`
|
||||||
|
$0
|
||||||
|
endsnippet
|
||||||
|
|
||||||
snippet ,m "Math equation" A
|
snippet ,m "Math equation" A
|
||||||
\$$1\$ $0
|
\$$1\$ $0
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
|
@ -69,4 +69,5 @@ return {
|
||||||
build = "./install.sh",
|
build = "./install.sh",
|
||||||
dependencies = "hrsh7th/nvim-cmp",
|
dependencies = "hrsh7th/nvim-cmp",
|
||||||
},
|
},
|
||||||
|
"jaredgorski/spacecamp",
|
||||||
}
|
}
|
||||||
|
|
|
@ -352,3 +352,29 @@ Tablet
|
||||||
Abschwington
|
Abschwington
|
||||||
BerndDasBot
|
BerndDasBot
|
||||||
Frameworks
|
Frameworks
|
||||||
|
Tuples
|
||||||
|
structs
|
||||||
|
make
|
||||||
|
IoT
|
||||||
|
json
|
||||||
|
Request
|
||||||
|
Dictionary
|
||||||
|
Everything
|
||||||
|
Disclaimer
|
||||||
|
linuxspezifischen
|
||||||
|
linuxspezifischen
|
||||||
|
cron
|
||||||
|
false
|
||||||
|
true
|
||||||
|
boolsche
|
||||||
|
bash
|
||||||
|
zsh
|
||||||
|
sockets
|
||||||
|
requests
|
||||||
|
otwendige
|
||||||
|
ptionale
|
||||||
|
utomatischer
|
||||||
|
anueller
|
||||||
|
nickr
|
||||||
|
eu
|
||||||
|
email
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue