VSCodium-profiles/Python.code-profile

1 line
69 KiB
Plaintext
Raw Normal View History

2025-01-12 18:53:38 +01:00
{"name":"Python","icon":"snake","settings":"{\"settings\":\"{\\r\\n \\\"python.analysis.autoImportCompletions\\\": true,\\r\\n \\\"python.analysis.fixAll\\\": [\\\"source.unusedImports\\\"], \\r\\n \\\"editor.defaultFormatter\\\": \\\"ms-python.black-formatter\\\",\\r\\n \\\"files.exclude\\\": {\\r\\n \\\"**/__pycache__\\\": true,\\r\\n \\\"**/.cache\\\": true,\\r\\n \\\"**/.coverage\\\": true,\\r\\n \\\"**/.coverage.*\\\": true,\\r\\n \\\"**/.hypothesis\\\": true,\\r\\n \\\"**/.mypy_cache\\\": true,\\r\\n \\\"**/.nox\\\": true,\\r\\n \\\"**/.pytest_cache\\\": true,\\r\\n \\\"**/.ruff_cache\\\": true,\\r\\n \\\"**/.tox\\\": true\\r\\n },\\r\\n \\\"workbench.colorTheme\\\": \\\"Ayu Mirage\\\",\\r\\n \\\"git.autofetch\\\": true,\\r\\n \\\"window.zoomLevel\\\": 1,\\r\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\r\\n \\\"cloudcode.duetAI.project\\\": \\\"hybrid-creek-420412\\\",\\r\\n \\\"editor.cursorSmoothCaretAnimation\\\": \\\"explicit\\\",\\r\\n \\\"cloudcode.duetAI.inlineSuggestions.enableAuto\\\": false,\\r\\n \\\"window.commandCenter\\\": false,\\r\\n \\\"editor.fontFamily\\\": \\\"'Droid Sans Mono', 'hack', 'MesloLGS NF'\\\",\\r\\n \\\"files.autoSave\\\": \\\"afterDelay\\\",\\r\\n \\\"codesnap.showWindowControls\\\": false\\r\\n\\r\\n}\"}","keybindings":"{\"keybindings\":\"// Place your key bindings in this file to override the defaults\\n[\\n {\\n \\\"key\\\": \\\"ctrl+shift+[Period]\\\",\\n \\\"command\\\": \\\"breadcrumbs.focus\\\",\\n \\\"when\\\": \\\"breadcrumbsPossible && breadcrumbsVisible\\\"\\n },\\n {\\n \\\"key\\\": \\\"ctrl+[Period]\\\",\\n \\\"command\\\": \\\"-breadcrumbs.focus\\\",\\n \\\"when\\\": \\\"breadcrumbsPossible && breadcrumbsVisible\\\"\\n },\\n {\\n \\\"key\\\": \\\"ctrl+[Period]\\\",\\n \\\"command\\\": \\\"editor.action.commentLine\\\",\\n \\\"when\\\": \\\"editorTextFocus && !editorReadonly\\\"\\n },\\n {\\n \\\"key\\\": \\\"ctrl+shift+[Period]\\\",\\n \\\"command\\\": \\\"-editor.action.commentLine\\\",\\n \\\"when\\\": \\\"editorTextFocus && !editorReadonly\\\"\\n }\\n]\",\"platform\":2}","snippets":"{\"snippets\":{\"python.json\":\"\\n{\\n \\\"if\\\": {\\n \\\"prefix\\\": \\\"if\\\",\\n \\\"body\\\": [\\\"if ${1:expression}:\\\", \\\"\\\\t${2:pass}\\\"],\\n \\\"description\\\": \\\"Code snippet for an if statement\\\"\\n },\\n \\\"if/else\\\": {\\n \\\"prefix\\\": \\\"if/else\\\",\\n \\\"body\\\": [\\\"if ${1:condition}:\\\", \\\"\\\\t${2:pass}\\\", \\\"else:\\\", \\\"\\\\t${3:pass}\\\"],\\n \\\"description\\\": \\\"Code snippet for an if statement with else\\\"\\n },\\n \\\"elif\\\": {\\n \\\"prefix\\\": \\\"elif\\\",\\n \\\"body\\\": [\\\"elif ${1:expression}:\\\", \\\"\\\\t${2:pass}\\\"],\\n \\\"description\\\": \\\"Code snippet for an elif\\\"\\n },\\n \\\"else\\\": {\\n \\\"prefix\\\": \\\"else\\\",\\n \\\"body\\\": [\\\"else:\\\", \\\"\\\\t${1:pass}\\\"],\\n \\\"description\\\": \\\"Code snippet for an else\\\"\\n },\\n \\\"while\\\": {\\n \\\"prefix\\\": \\\"while\\\",\\n \\\"body\\\": [\\\"while ${1:expression}:\\\", \\\"\\\\t${2:pass}\\\"],\\n \\\"description\\\": \\\"Code snippet for a while loop\\\"\\n },\\n \\\"while/else\\\": {\\n \\\"prefix\\\": \\\"while/else\\\",\\n \\\"body\\\": [\\\"while ${1:expression}:\\\", \\\"\\\\t${2:pass}\\\", \\\"else:\\\", \\\"\\\\t${3:pass}\\\"],\\n \\\"description\\\": \\\"Code snippet for a while loop with else\\\"\\n },\\n \\\"for\\\": {\\n \\\"prefix\\\": \\\"for\\\",\\n \\\"body\\\": [\\\"for ${1:target_list} in ${2:expression_list}:\\\", \\\"\\\\t${3:pass}\\\"],\\n \\\"description\\\": \\\"Code snippet for a for loop\\\"\\n },\\n \\\"for/else\\\": {\\n \\\"prefix\\\": \\\"for/else\\\",\\n \