aboutsummaryrefslogtreecommitdiff
path: root/src/content/controllers/KeymapController.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-05-23 21:30:07 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-05-23 21:40:05 +0900
commit5a7db96febd4e3cb2aa519610da75e0bccd69a7f (patch)
tree2a451f588604f65bb73aad1a13d8778aa629dfe2 /src/content/controllers/KeymapController.ts
parent07897df636ca3e732490d53fd2acf947738bf16e (diff)
Move some navigation operations to background
Diffstat (limited to 'src/content/controllers/KeymapController.ts')
-rw-r--r--src/content/controllers/KeymapController.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/content/controllers/KeymapController.ts b/src/content/controllers/KeymapController.ts
index 1835546..4be8f9d 100644
--- a/src/content/controllers/KeymapController.ts
+++ b/src/content/controllers/KeymapController.ts
@@ -84,18 +84,6 @@ export default class KeymapController {
case operations.MARK_JUMP_PREFIX:
this.markKeyUseCase.enableJumpMode();
break;
- case operations.NAVIGATE_HISTORY_PREV:
- this.navigateUseCase.openHistoryPrev();
- break;
- case operations.NAVIGATE_HISTORY_NEXT:
- this.navigateUseCase.openHistoryNext();
- break;
- case operations.NAVIGATE_LINK_PREV:
- this.navigateUseCase.openLinkPrev();
- break;
- case operations.NAVIGATE_LINK_NEXT:
- this.navigateUseCase.openLinkNext();
- break;
case operations.NAVIGATE_PARENT:
this.navigateUseCase.openParent();
break;