Skip to content

Commit f4349d7

Browse files
committed
Use block strings for settings
1 parent b6ba1c4 commit f4349d7

File tree

1 file changed

+22
-15
lines changed

1 file changed

+22
-15
lines changed

background_scripts/settings.coffee

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,28 @@ Settings =
88
filterLinkHints: false
99
hideHud: false
1010
userDefinedLinkHintCss:
11-
"div > .vimiumHintMarker {" + "\n" +
12-
"/* linkhint boxes */ " + "\n" +
13-
"background-color: yellow;" + "\n" +
14-
"border: 1px solid #E3BE23;" + "\n" +
15-
"}" + "\n\n" +
16-
"div > .vimiumHintMarker span {" + "\n" +
17-
"/* linkhint text */ " + "\n" +
18-
"color: black;" + "\n" +
19-
"font-weight: bold;" + "\n" +
20-
"font-size: 12px;" + "\n" +
21-
"}" + "\n\n" +
22-
"div > .vimiumHintMarker > .matchingCharacter {" + "\n" +
23-
"}"
24-
excludedUrls: "http*://mail.google.com/*\n" +
25-
"http*://www.google.com/reader/*\n"
11+
"""
12+
div > .vimiumHintMarker {
13+
/* linkhint boxes */
14+
background-color: yellow;
15+
border: 1px solid #E3BE23;
16+
}
17+
18+
div > .vimiumHintMarker span {
19+
/* linkhint text */
20+
color: black;
21+
font-weight: bold;
22+
font-size: 12px;
23+
}
24+
25+
div > .vimiumHintMarker > .matchingCharacter {
26+
}
27+
"""
28+
excludedUrls:
29+
"""
30+
http*://mail.google.com/*
31+
http*://www.google.com/reader/*
32+
"""
2633

2734
# NOTE : If a page contains both a single angle-bracket link and a double angle-bracket link, then in
2835
# most cases the single bracket link will be "prev/next page" and the double bracket link will be

0 commit comments

Comments
 (0)