aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-06-10Move updateFindModeQuery to mode_find.coffeemrmr1993
2015-06-10Inline HUD.findModeKeydown at its sole callsitemrmr1993
2015-06-10Remove redundancy in HUD.findModeKeydownmrmr1993
2015-06-10Move findModeQueryHasResults to findModeQuery.hasResultsmrmr1993
2015-06-10Remove global findMode and pass new FindMode instances direct to the HUDmrmr1993
2015-06-10Remove unused argument to HUD.showFindModemrmr1993
2015-06-10Move FindMode from vimium_frontend to mode_findmrmr1993
2015-06-10Expose executeFind on windowmrmr1993
2015-06-10Expose getNextQueryFromRegexMatches on windowmrmr1993
2015-06-10Inline HUD.updateMatchesCount at its sole callsitemrmr1993
2015-06-10Inline showFindModeHUDForQuery at its sole callsitemrmr1993
2015-06-10Integrate performFindInPlace into FindMode as findInPlacemrmr1993
2015-06-10Remove global findModeAnchorNode and false comments justifying itmrmr1993
2015-06-10Move finding the element at a selection's focus to a library functionmrmr1993
2015-06-10Move findModeRestoreSelection to FindMode::restoreSelectionmrmr1993
2015-06-10Inline findModeSaveSelection, store initialRange in FindMode instancemrmr1993
2015-06-10Use FindMode constructor directly in visual/edit modesmrmr1993
2015-06-10Move code from enterFindMode into the FindMode constructormrmr1993
2015-06-10Tweaks to up/down handler in find mode HUD to give it the data it needsmrmr1993
2015-06-10Guard against chrome being undefined in the HUD iframemrmr1993
2015-06-10Handle up and down keys directly in the HUDmrmr1993
2015-06-10Move FindModeHistory to its own file to be used by the HUD iframe toomrmr1993
2015-06-10Make FindModeHistory independent of the rest of vimium_frontendmrmr1993
2015-06-10Move FindMode's keydown to the HUDmrmr1993
2015-06-10Fix returnToViewport support for FindModemrmr1993
This was broken by the move to taking input in an iframe, since the frontend was no longer getting keydown events for text changes, and so the viewport wasn't being scrolled back to its original position until the mode was exiting.
2015-06-10Stop FindMode's keydown handler from using FindMode's scope and thismrmr1993
2015-06-10Move key-only code from FindMode.exit to its keydown handlermrmr1993
2015-06-10Handle esc explicitly in the FindMode keydown handler, not by optionsmrmr1993
2015-06-10Remove redundant code from FindMode keydown handler, inline delete codemrmr1993
2015-06-10Remove unused function handleKeyCharForFindModemrmr1993
2015-06-10Remove unused event listeners in FindModemrmr1993
2015-06-10Remove unused code in handleDeleteForFindModemrmr1993
2015-06-10Replace   with normal spaces for HUD find modemrmr1993
This keeps searches with trailing spaces from missing matches where the page contains normal spaces, preventing " (No matches)" being shown every time space is pressed.
2015-06-10Ensure focus is called on the appropriate element when closing the HUDmrmr1993
2015-06-10Accept input in the HUD iframemrmr1993
2015-06-10Reduce down the HUD's match count string codemrmr1993
2015-06-10Make all find mode updates go via the HUD in preparation to use an inputmrmr1993
2015-06-10Decide find mode text in the HUD iframe, not in frontendmrmr1993
2015-06-10Tweak release notes.Stephen Blott
2015-06-10Merge branch 'link-hints-keypress' (#1722).Stephen Blott
2015-06-10Remove legacy (broken and unnecessary) calls.Stephen Blott
2015-06-10Simplify activate-on-enter logic.Stephen Blott
2015-06-09Minor touch ups.Stephen Blott
2015-06-09Make LinkHints a class (LinkHintsMode).Stephen Blott
Functionality wise, this is a no-op. However, since we now create a new LinkHintsMode object on every "f", we don't need to be so careful about resetting the state on exit.
2015-06-09Use tab to select filetered link hints.Stephen Blott
2015-06-09Tweak comments re. keydown versus keypress.Stephen Blott
2015-06-09Only look up linkHintNumbers once.Stephen Blott
2015-06-09Alphabet hints, use keydown for defaults.Stephen Blott
See #1722. When Settings.get("linkHintCharacters") is its default value, this preserves the legacy behaviour of using the keyChar from keydown events for link-hint matching. This admits users using either Latin or non-Latin characters for link hints.
2015-06-08Remove "experimental" comment.Stephen Blott
I think we can safely remove this comment now, @mrmr1993. This is working out very nicely.
2015-06-08Make hint filters classes.Stephen Blott