Fixes following OSX native keyboard shortcuts in Query Tool:

1) option+arrow (L/R) should skip by "word"
  2) option+arrow (up/down) should go up/down one line
  3) shift+option+arrow (L/R) should select/highlight by "word"
This commit is contained in:
Nagesh Dhope
2020-04-10 15:21:56 +05:30
committed by Akshay Joshi
parent 6a9af07f7a
commit d9574f3caa
2 changed files with 3 additions and 3 deletions

View File

@@ -2117,9 +2117,8 @@ define('pgadmin.browser', [
'Ctrl-D': 'deleteLine',
'Cmd-D': 'deleteLine',
// Go to start/end of Line
'Alt-Left': 'goLineStart',
'Alt-Right': 'goLineEnd',
'Alt-Up': 'goLineUp',
'Alt-Down': 'goLineDown',
// Move word by word left/right
'Ctrl-Alt-Left': 'goGroupLeft',