diff --git a/docs/en_US/release_notes_4_27.rst b/docs/en_US/release_notes_4_27.rst index a836e4cfd..9f196f86c 100644 --- a/docs/en_US/release_notes_4_27.rst +++ b/docs/en_US/release_notes_4_27.rst @@ -21,6 +21,7 @@ Bug fixes ********* | `Issue #4806 `_ - Added useful message when the explain plan is not used and empty. +| `Issue #5131 `_ - Ensure that 'ctrl + a' shortcut does not move the cursor in SQL editor. | `Issue #5417 `_ - Fixed and improve API test cases for the schema diff tool. | `Issue #5739 `_ - Ensure that the import/export feature should work with SSH Tunnel. | `Issue #5802 `_ - Remove maximum length on the password field in the server dialog. diff --git a/web/pgadmin/browser/static/js/browser.js b/web/pgadmin/browser/static/js/browser.js index 0eb7840b0..e9463f2ea 100644 --- a/web/pgadmin/browser/static/js/browser.js +++ b/web/pgadmin/browser/static/js/browser.js @@ -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',