diff options
| author | Phil Crosby | 2014-08-17 11:19:37 -0700 |
|---|---|---|
| committer | Phil Crosby | 2014-08-17 11:19:37 -0700 |
| commit | 142b2afe59ab822550d90e7147152d2b0a44ef51 (patch) | |
| tree | 54caeeeb9813b6e7c291bd43d6a5f0127f25f9ad /background_scripts/main.coffee | |
| parent | 081c4946a301a32438ce18e4af6da01b3150057d (diff) | |
| download | vimium-142b2afe59ab822550d90e7147152d2b0a44ef51.tar.bz2 | |
Tweak the move tabs command name
I think this is at little more readable, at least in the code
Diffstat (limited to 'background_scripts/main.coffee')
| -rw-r--r-- | background_scripts/main.coffee | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee index a8f851c0..8078f4e6 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -290,8 +290,8 @@ BackgroundCommands = chrome.tabs.sendMessage(tab.id, { name: "focusFrame", frameId: frames[newIndex].id, highlight: true })) - closeTabsToLeft: -> removeTabsRelative "before" - closeTabsToRight: -> removeTabsRelative "after" + closeTabsOnLeft: -> removeTabsRelative "before" + closeTabsOnRight: -> removeTabsRelative "after" closeOtherTabs: -> removeTabsRelative "both" # Remove tabs before, after, or either side of the currently active tab |
