diff options
| author | Stephen Blott | 2016-05-12 07:21:07 +0100 |
|---|---|---|
| committer | Stephen Blott | 2016-05-12 07:21:07 +0100 |
| commit | 22f0ed9c3c63ecbc4fc2413dc5235a9489d9cf25 (patch) | |
| tree | 9b4c0d499341fb069319ddb7754a3fbf8a7bf0b1 /lib | |
| parent | 25587a5ae039dc8a1f57a441195b0b93dc8a3475 (diff) | |
| download | vimium-22f0ed9c3c63ecbc4fc2413dc5235a9489d9cf25.tar.bz2 | |
Revert "Improves next/previous links by targetting button elements and adding single left/right angle quotation marks"
This reverts commit ee8c235aeaf52d2bc867a00c37731690e337c7ff.
This reverts #2117.
This breaks next/prev on Reddit (it chooses a different link).
Reddit is an important site, so we should unwind this for now.
Mention @sco-tt.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/settings.coffee | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/settings.coffee b/lib/settings.coffee index 92871ee2..70dc1147 100644 --- a/lib/settings.coffee +++ b/lib/settings.coffee @@ -144,10 +144,10 @@ Settings = # "first/last page", so we put the single bracket first in the pattern string so that it gets searched # for first. - # "\bprev\b,\bprevious\b,\bback\b,<,‹,←,«,≪,<<" - previousPatterns: "prev,previous,back,older,<,\u2039,\u2190,\xab,\u226a,<<" - # "\bnext\b,\bmore\b,>,›,→,»,≫,>>" - nextPatterns: "next,more,newer,>,\u203a,\u2192,\xbb,\u226b,>>" + # "\bprev\b,\bprevious\b,\bback\b,<,←,«,≪,<<" + previousPatterns: "prev,previous,back,older,<,\u2190,\xab,\u226a,<<" + # "\bnext\b,\bmore\b,>,→,»,≫,>>" + nextPatterns: "next,more,newer,>,\u2192,\xbb,\u226b,>>" # default/fall back search engine searchUrl: "https://www.google.com/search?q=" # put in an example search engine |
