ref(nvim): cleanup snippets

This commit is contained in:
Léana 江 2024-02-03 17:39:30 +01:00 committed by Léana 江
parent 008049056b
commit e4c659334a
2 changed files with 0 additions and 103 deletions

View file

@ -1,31 +1,4 @@
{
"Dict comprehension": {
"prefix": "dc",
"body": [
"{",
"\t${3:key}:${4:value}",
"\tfor ${1:var} in ${2:iterated}",
"}",
""
]
},
"List comprehension": {
"prefix": "lc",
"body": [
"[",
"\t${3:var}${4:transformation}",
"\tfor ${1:var} in ${2:iterated}",
"]",
""
]
},
"For": {
"prefix": "for",
"body": [
"for ${1:var} in ${2:iterable}:",
"\t"
]
},
"Open, read and save file to variable": {
"prefix": "open",
"body": [