We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9723d0e commit 1ab0acfCopy full SHA for 1ab0acf
content_scripts/vimium_frontend.coffee
@@ -804,12 +804,12 @@ findAndFollowRel = (value) ->
804
805
window.goPrevious = ->
806
previousPatterns = settings.get("previousPatterns") || ""
807
- previousStrings = previousPatterns.split(",").filter((s) -> s.length)
+ previousStrings = previousPatterns.split(",").filter( (s) -> s.trim().length )
808
findAndFollowRel("prev") || findAndFollowLink(previousStrings)
809
810
window.goNext = ->
811
nextPatterns = settings.get("nextPatterns") || ""
812
- nextStrings = nextPatterns.split(",").filter((s) -> s.length)
+ nextStrings = nextPatterns.split(",").filter( (s) -> s.trim().length )
813
findAndFollowRel("next") || findAndFollowLink(nextStrings)
814
815
showFindModeHUDForQuery = ->
0 commit comments