aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.markdown4
-rw-r--r--commands.js3
2 files changed, 2 insertions, 5 deletions
diff --git a/README.markdown b/README.markdown
index c554470a..0aa6050f 100644
--- a/README.markdown
+++ b/README.markdown
@@ -46,8 +46,8 @@ Navigating the current page:
y copy the current url to the clipboard
Navigating your history:
- ba, H go back in history
- fw, fo, L go forward in history
+ H go back in history
+ L go forward in history
Manipulating tabs:
J, gT go one tab left
diff --git a/commands.js b/commands.js
index 6fcad6b9..7e118cd0 100644
--- a/commands.js
+++ b/commands.js
@@ -124,10 +124,7 @@ mapKeyToCommand('gf', 'toggleViewSource');
mapKeyToCommand('i', 'enterInsertMode');
-mapKeyToCommand('ba', 'goBack');
mapKeyToCommand('H', 'goBack');
-mapKeyToCommand('fw', 'goForward');
-mapKeyToCommand('fo', 'goForward');
mapKeyToCommand('L', 'goForward');
mapKeyToCommand('zi', 'zoomIn');