vscode changes

This commit is contained in:
2024-08-21 01:24:33 +02:00
parent acd6b00420
commit 2a6d2cbb4d
2 changed files with 36 additions and 0 deletions

View File

@ -196,4 +196,32 @@
"command": "-editor.action.peekImplementation", "command": "-editor.action.peekImplementation",
"when": "editorHasImplementationProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor" "when": "editorHasImplementationProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor"
}, },
{
"key": "alt+[BracketRight]",
"command": "jupyter.insertCellBelow",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused"
},
{
"key": "ctrl+shift+[Comma] b",
"command": "-jupyter.insertCellBelow",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused"
},
{
"key": "shift+alt+[BracketRight]",
"command": "jupyter.insertCellAbove",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused"
},
{
"key": "ctrl+shift+[Comma] a",
"command": "-jupyter.insertCellAbove",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused"
},
{
"key": "ctrl+down",
"command": "jupyter.gotoNextCellInFile"
},
{
"key": "ctrl+up",
"command": "jupyter.gotoPrevCellInFile"
},
] ]

View File

@ -95,5 +95,13 @@
"editor.tabSize": 2, "editor.tabSize": 2,
"emmet.showAbbreviationSuggestions": false, "emmet.showAbbreviationSuggestions": false,
"editor.linkedEditing": true, "editor.linkedEditing": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
}
}, },
"hexeditor.columnWidth": 4,
"hexeditor.showDecodedText": true,
"hexeditor.defaultEndianness": "little",
"hexeditor.inspectorType": "aside",
"typst-lsp.exportPdf": "onType",
} }