aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
diff options
context:
space:
mode:
authormrmr19932016-03-05 13:43:13 +0000
committermrmr19932016-03-05 13:43:13 +0000
commit4491ba5e988aa069839ca073f9de6bada596857f (patch)
treeeb24de4111e4379ef7cc7d1dc9d26ac2cd2a2cef /content_scripts
parentb883af74450faf3683b8077d6ba09864f5632b26 (diff)
downloadvimium-4491ba5e988aa069839ca073f9de6bada596857f.tar.bz2
Reformat link hint mode objects for easier diffs
This is a no-op.
Diffstat (limited to 'content_scripts')
-rw-r--r--content_scripts/link_hints.coffee21
1 files changed, 14 insertions, 7 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee
index 57fec611..45145d49 100644
--- a/content_scripts/link_hints.coffee
+++ b/content_scripts/link_hints.coffee
@@ -10,13 +10,20 @@
#
# The "name" property below is a short-form name to appear in the link-hints mode's name. It's for debug only.
#
-OPEN_IN_CURRENT_TAB = name: "curr-tab"
-OPEN_IN_NEW_BG_TAB = name: "bg-tab"
-OPEN_IN_NEW_FG_TAB = name: "fg-tab"
-OPEN_WITH_QUEUE = name: "queue"
-COPY_LINK_URL = name: "link"
-OPEN_INCOGNITO = name: "incognito"
-DOWNLOAD_LINK_URL = name: "download"
+OPEN_IN_CURRENT_TAB =
+ name: "curr-tab"
+OPEN_IN_NEW_BG_TAB =
+ name: "bg-tab"
+OPEN_IN_NEW_FG_TAB =
+ name: "fg-tab"
+OPEN_WITH_QUEUE =
+ name: "queue"
+COPY_LINK_URL =
+ name: "link"
+OPEN_INCOGNITO =
+ name: "incognito"
+DOWNLOAD_LINK_URL =
+ name: "download"
LinkHints =
activateMode: (count = 1, mode = OPEN_IN_CURRENT_TAB) ->