aboutsummaryrefslogtreecommitdiffstats
path: root/commands.js
diff options
context:
space:
mode:
authorjez2010-12-28 22:30:35 +0800
committerjez2010-12-28 22:30:35 +0800
commit064a8b523ea53d4999bbd5987be5dc3db5caa4c8 (patch)
tree068ddf6fb1ad210113cd6023deb05929104ba6d1 /commands.js
parentbb9387946cb573123a33541eb01b90fd8f9a744d (diff)
downloadvimium-064a8b523ea53d4999bbd5987be5dc3db5caa4c8.tar.bz2
Add command repetition for goUp command. Closes #179.
Diffstat (limited to 'commands.js')
-rw-r--r--commands.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands.js b/commands.js
index c86b129f..3b9203dc 100644
--- a/commands.js
+++ b/commands.js
@@ -170,7 +170,7 @@ addCommand('goBack', 'Go back in history');
addCommand('goForward', 'Go forward in history');
// Navigating the URL hierarchy
-addCommand('goUp', 'Go up the URL hierarchy');
+addCommand('goUp', 'Go up the URL hierarchy', false, true);
// Manipulating tabs:
addCommand('nextTab', 'Go one tab right', true);