We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2576548 commit f0abe2bCopy full SHA for f0abe2b
web/pgadmin/static/js/components/ReactCodeMirror/components/Editor.jsx
@@ -119,9 +119,9 @@ function insertTabWithUnit({ state, dispatch }) {
119
/* React wrapper for CodeMirror */
120
const defaultExtensions = [
121
highlightSpecialChars(),
122
- rectangularSelection(),
123
dropCursor(),
124
- crosshairCursor(),
+ rectangularSelection({ eventFilter: (e) => e.altKey && e.ctrlKey }),
+ crosshairCursor({ key: 'Control' }),
125
EditorState.allowMultipleSelections.of(true),
126
indentOnInput(),
127
syntaxHighlighting,
0 commit comments