| @@ -558,6 +558,12 @@ key.setGlobalKey('C-l', function (ev, arg) { | |||||
| ext.exec("hok-start-foreground-mode", arg, ev); | ext.exec("hok-start-foreground-mode", arg, ev); | ||||
| }, 'Start Hit a Hint foreground mode', true); | }, 'Start Hit a Hint foreground mode', true); | ||||
| key.setGlobalKey('<delete>', function (ev, arg) { | |||||
| let (elem = document.commandDispatcher.focusedElement) elem && elem.blur(); | |||||
| gBrowser.focus(); | |||||
| content.focus(); | |||||
| }, 'コンテンツへフォーカス', true); | |||||
| key.setViewKey('c', function (ev) { | key.setViewKey('c', function (ev) { | ||||
| command.interpreter(); | command.interpreter(); | ||||
| }, 'JavaScript のコードを評価'); | }, 'JavaScript のコードを評価'); | ||||
| @@ -684,14 +690,6 @@ key.setViewKey('a', function (ev, arg) { | |||||
| allTabs.open(); | allTabs.open(); | ||||
| }, 'alltabs.open'); | }, 'alltabs.open'); | ||||
| key.setViewKey('<left>', function (ev) { | |||||
| goDoCommand("cmd_scrollPageUp"); | |||||
| }, '一画面分スクロールアップ'); | |||||
| key.setViewKey('<right>', function (ev) { | |||||
| goDoCommand("cmd_scrollPageDown"); | |||||
| }, '一画面スクロールダウン'); | |||||
| key.setViewKey([['<prior>'], ['<next>']], function (ev, arg) { | key.setViewKey([['<prior>'], ['<next>']], function (ev, arg) { | ||||
| return; | return; | ||||
| }, 'ignore'); | }, 'ignore'); | ||||
| @@ -733,8 +731,10 @@ key.setEditKey('C-<tab>', function (ev) { | |||||
| command.walkInputElement(command.elementsRetrieverTextarea, true, true); | command.walkInputElement(command.elementsRetrieverTextarea, true, true); | ||||
| }, '次のテキストエリアへフォーカス'); | }, '次のテキストエリアへフォーカス'); | ||||
| key.setGlobalKey('<delete>', function (ev, arg) { | |||||
| let(elem = document.commandDispatcher.focusedElement) elem && elem.blur(); | |||||
| gBrowser.focus(); | |||||
| content.focus(); | |||||
| }, 'コンテンツへフォーカス', true); | |||||
| key.setViewKey('<right>', function (ev) { | |||||
| getBrowser().mTabContainer.advanceSelectedTab(1, true); | |||||
| }, 'ひとつ右のタブへ'); | |||||
| key.setViewKey('<left>', function (ev) { | |||||
| getBrowser().mTabContainer.advanceSelectedTab(-1, true); | |||||
| }, 'ひとつ左のタブへ'); | |||||