mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
Ensure that 'ctrl + a' shortcut does not move the cursor in SQL editor. Fixes #5131
This commit is contained in:
parent
1fc06b8d57
commit
3e7cdcdf90
@ -21,6 +21,7 @@ Bug fixes
|
||||
*********
|
||||
|
||||
| `Issue #4806 <https://redmine.postgresql.org/issues/4806>`_ - Added useful message when the explain plan is not used and empty.
|
||||
| `Issue #5131 <https://redmine.postgresql.org/issues/5131>`_ - Ensure that 'ctrl + a' shortcut does not move the cursor in SQL editor.
|
||||
| `Issue #5417 <https://redmine.postgresql.org/issues/5417>`_ - Fixed and improve API test cases for the schema diff tool.
|
||||
| `Issue #5739 <https://redmine.postgresql.org/issues/5739>`_ - Ensure that the import/export feature should work with SSH Tunnel.
|
||||
| `Issue #5802 <https://redmine.postgresql.org/issues/5802>`_ - Remove maximum length on the password field in the server dialog.
|
||||
|
@ -2171,22 +2171,6 @@ define('pgadmin.browser', [
|
||||
'Ctrl-Space': 'autocomplete',
|
||||
'Cmd-Space': 'autocomplete',
|
||||
|
||||
// Select All text
|
||||
'Ctrl-A': 'selectAll',
|
||||
'Cmd-A': 'selectAll',
|
||||
|
||||
// Redo text
|
||||
'Ctrl-Y': 'redo',
|
||||
'Cmd-Y': 'redo',
|
||||
|
||||
// Undo text
|
||||
'Ctrl-Z': 'undo',
|
||||
'Cmd-Z': 'undo',
|
||||
|
||||
// Delete Line
|
||||
'Ctrl-D': 'deleteLine',
|
||||
'Cmd-D': 'deleteLine',
|
||||
|
||||
'Alt-Up': 'goLineUp',
|
||||
'Alt-Down': 'goLineDown',
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user