Ensure that 'ctrl + a' shortcut does not move the cursor in SQL editor. Fixes #5131

This commit is contained in:
Aditya Toshniwal 2020-09-29 10:56:57 +05:30 committed by Akshay Joshi
parent 1fc06b8d57
commit 3e7cdcdf90
2 changed files with 1 additions and 16 deletions

View File

@ -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.

View File

@ -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',