diff --git a/keybindings.json b/keybindings.json
index f7043e4..bda5b3f 100644
--- a/keybindings.json
+++ b/keybindings.json
@@ -29,6 +29,18 @@
"key": "alt+s",
"command": "notebook.addFindMatchToSelection",
"when": "config.notebook.multiCursor.enabled && notebookCellEditorFocused && activeEditor == 'workbench.editor.notebook'"
+ },
+ {
+ "key": "ctrl+numpad1",
+ "command": "editor.action.sortLinesAscending"
+ },
+ {
+ "key": "ctrl+j",
+ "command": "-workbench.action.togglePanel"
+ },
+ {
+ "key": "ctrl+j",
+ "command": "editor.action.joinLines"
}
]
diff --git a/settings.json b/settings.json
index c4fc4d9..a209503 100644
--- a/settings.json
+++ b/settings.json
@@ -29,5 +29,10 @@
"editor.inlineSuggest.suppressSuggestions": true,
"editor.quickSuggestions": {
"other": "off"
- }
+ },
+ "editor.stickyScroll.enabled": false,
+ "editor.stickyScroll.scrollWithEditor": false,
+ "workbench.tree.enableStickyScroll": false,
+ "terminal.integrated.stickyScroll.enabled": false,
+ "editor.hover.sticky": false
}