Daily auto-commit 2025-11-27T05:01:49UTC @ nord

This commit is contained in:
2025-11-27 06:01:49 +01:00
parent 9cfe33c64c
commit 112d9422e6
2 changed files with 22 additions and 6 deletions

View File

@@ -55,6 +55,7 @@
"coloring": "disabled"
},
"project_panel": {
"hide_gitignore": true,
"indent_size": 10,
"indent_guides": {
"show": "never"

View File

@@ -1,17 +1,32 @@
{
"Todo": {
"printf": {
"prefix": "printf",
"body": "print(f\"{${1:foo} = }\")$0",
"description": "Python snippet 'printf'"
},
"printf-debug": {
"prefix": "printf",
"body": "print(f\"{${1:foo} = }\"${2:, file=sys.stderr})${3: # DEBUG}$0",
"description": "Python snippet 'printf-debug'"
},
"todo": {
"prefix": "todo",
"body": "# TODO: $0",
"description": "Python snippet 'Todo'"
"description": "Python snippet 'todo'"
},
"FixMe": {
"fixme": {
"prefix": "fixme",
"body": "# FIXME: $0",
"description": "Python snippet 'FixMe'"
"description": "Python snippet 'fixme'"
},
"Hack": {
"hack": {
"prefix": "hack",
"body": "# HACK: $0",
"description": "Python snippet 'Hack'"
"description": "Python snippet 'hack'"
},
"debug": {
"prefix": "debug",
"body": "# DEBUG: $0",
"description": "Python snippet 'hack'"
}
}