mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Allow use of Shift+Tab to un-indent selected text. Fixes #1988
This commit is contained in:
parent
2bb01e2d1a
commit
9de6c08d28
@ -55,6 +55,10 @@ When using the syntax-highlighting SQL editors, the following shortcuts are avai
|
|||||||
+--------------------------+------------------+-------------------------------------+
|
+--------------------------+------------------+-------------------------------------+
|
||||||
| Ctrl+Minus | Cmd+Minus | Zoom out |
|
| Ctrl+Minus | Cmd+Minus | Zoom out |
|
||||||
+--------------------------+------------------+-------------------------------------+
|
+--------------------------+------------------+-------------------------------------+
|
||||||
|
| Tab | Tab | Indent selected text |
|
||||||
|
+--------------------------+------------------+-------------------------------------+
|
||||||
|
| Shift+Tab | Shift+Tab | Un-indent selected text |
|
||||||
|
+--------------------------+------------------+-------------------------------------+
|
||||||
|
|
||||||
**Query Tool**
|
**Query Tool**
|
||||||
|
|
||||||
|
@ -1833,7 +1833,10 @@ define(
|
|||||||
"Ctrl-Alt-Left": "goGroupLeft",
|
"Ctrl-Alt-Left": "goGroupLeft",
|
||||||
"Cmd-Alt-Left": "goGroupLeft",
|
"Cmd-Alt-Left": "goGroupLeft",
|
||||||
"Ctrl-Alt-Right": "goGroupRight",
|
"Ctrl-Alt-Right": "goGroupRight",
|
||||||
"Cmd-Alt-Right": "goGroupRight"
|
"Cmd-Alt-Right": "goGroupRight",
|
||||||
|
|
||||||
|
// Allow user to delete Tab(s)
|
||||||
|
"Shift-Tab": "indentLess"
|
||||||
},
|
},
|
||||||
editor_options: {
|
editor_options: {
|
||||||
tabSize: '{{ editor_tab_size }}',
|
tabSize: '{{ editor_tab_size }}',
|
||||||
|
Loading…
Reference in New Issue
Block a user