VSCode changes

This commit is contained in:
2024-12-23 11:29:19 +01:00
parent 6b77448355
commit 99e98b1766
2 changed files with 36 additions and 2 deletions

View File

@ -29,5 +29,37 @@
"key": "ctrl+z",
"command": "-undo",
"when": "notebookEditorFocused"
},
// Toggle between terminal and editor focus
{
"key": "ctrl+'",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+'",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "workbench.action.moveEditorToNextGroup"
},
{
"key": "ctrl+alt+right",
"command": "-workbench.action.moveEditorToNextGroup"
},
{
"key": "alt+left",
"command": "workbench.action.moveEditorToPreviousGroup"
},
{
"key": "ctrl+alt+left",
"command": "-workbench.action.moveEditorToPreviousGroup"
},
{
"key": "ctrl+shift+c",
"command": "-workbench.action.terminal.openNativeConsole",
"when": "!terminalFocus"
}
]

View File

@ -1,6 +1,6 @@
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderWhitespace": "trailing",
"editor.renderWhitespace": "none",
"editor.suggestSelection": "recentlyUsed",
"editor.accessibilitySupport": "off",
"explorer.confirmPasteNative": false,
@ -78,7 +78,7 @@
},
"notebook.lineNumbers": "on",
"notebook.output.scrolling": true,
"jupyter.askForKernelRestart": true,
"jupyter.askForKernelRestart": false,
"jupyter.widgetScriptSources": [
"jsdelivr.com",
"unpkg.com"
@ -222,4 +222,6 @@
"ltex.additionalRules.enablePickyRules": true,
"ltex.additionalRules.motherTongue": "it",
"ltex.statusBarItem": true,
"editor.mouseWheelScrollSensitivity": 1.5,
"git.openRepositoryInParentFolders": "never",
}