File tree Expand file tree Collapse file tree 5 files changed +0
-16
lines changed Expand file tree Collapse file tree 5 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,6 @@ export const DEFAULT_HOTKEY_GROUPS: HotkeysGroup[] = [
26
26
title : i18n ( 'hotkeys.execute-selected-query' ) ,
27
27
value : isMac ( ) ? 'cmd+shift+enter' : 'ctrl+shift+enter' ,
28
28
} ,
29
- {
30
- title : i18n ( 'hotkeys.previous-query' ) ,
31
- value : isMac ( ) ? 'cmd+arrowUp' : 'ctrl+arrowUp' ,
32
- } ,
33
- {
34
- title : i18n ( 'hotkeys.next-query' ) ,
35
- value : isMac ( ) ? 'cmd+arrowDown' : 'ctrl+arrowDown' ,
36
- } ,
37
29
{
38
30
title : i18n ( 'hotkeys.save-query' ) ,
39
31
value : isMac ( ) ? 'cmd+s' : 'ctrl+s' ,
Original file line number Diff line number Diff line change 15
15
"hotkeys.title" : " Keyboard shortcuts" ,
16
16
"hotkeys.execute-query" : " Execute query" ,
17
17
"hotkeys.execute-selected-query" : " Execute selected query" ,
18
- "hotkeys.previous-query" : " Previous query" ,
19
- "hotkeys.next-query" : " Next query" ,
20
18
"hotkeys.save-query" : " Save query" ,
21
19
"hotkeys.save-selected-query" : " Save selected query"
22
20
}
Original file line number Diff line number Diff line change 15
15
"hotkeys.title" : " Быстрые клавиши" ,
16
16
"hotkeys.execute-query" : " Выполнить запрос" ,
17
17
"hotkeys.execute-selected-query" : " Выполнить выбранный запрос" ,
18
- "hotkeys.previous-query" : " Предыдущий запрос" ,
19
- "hotkeys.next-query" : " Следующий запрос" ,
20
18
"hotkeys.save-query" : " Сохранить запрос" ,
21
19
"hotkeys.save-selected-query" : " Сохранить выбранный запрос"
22
20
}
Original file line number Diff line number Diff line change @@ -157,7 +157,6 @@ export function YqlEditor({
157
157
editor . addAction ( {
158
158
id : 'previous-query' ,
159
159
label : i18n ( 'action.previous-query' ) ,
160
- keybindings : [ keybindings . selectPreviousQuery ] ,
161
160
contextMenuGroupId : CONTEXT_MENU_GROUP_ID ,
162
161
contextMenuOrder : 2 ,
163
162
run : ( ) => {
@@ -167,7 +166,6 @@ export function YqlEditor({
167
166
editor . addAction ( {
168
167
id : 'next-query' ,
169
168
label : i18n ( 'action.next-query' ) ,
170
- keybindings : [ keybindings . selectNextQuery ] ,
171
169
contextMenuGroupId : CONTEXT_MENU_GROUP_ID ,
172
170
contextMenuOrder : 3 ,
173
171
run : ( ) => {
Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ export function getKeyBindings(monaco: typeof Monaco) {
9
9
return {
10
10
sendQuery : ctrlKey | KeyCode . Enter ,
11
11
sendSelectedQuery : ctrlKey | KeyMod . Shift | monaco . KeyCode . Enter ,
12
- selectPreviousQuery : ctrlKey | KeyCode . UpArrow ,
13
- selectNextQuery : ctrlKey | KeyCode . DownArrow ,
14
12
saveQuery : ctrlKey | KeyCode . KeyS ,
15
13
saveSelectedQuery : ctrlKey | KeyMod . Shift | KeyCode . KeyS ,
16
14
shortcutsHotkey : ctrlKey | KeyCode . KeyK ,
You can’t perform that action at this time.
0 commit comments