aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-11-18FF: Refocus the parent window after focusing the HUD for clipboard opsmrmr1993
2017-11-18FF: Use HUD.copyToClipboard for copyCurrentUrlmrmr1993
2017-11-18FF: Add clipboardWrite permission, so we can copy to clipboardmrmr1993
2017-11-18Initialize the HUD for clipboard operations if it hasn't been alreadymrmr1993
2017-11-18FF: Add copy/paste functions to the HUDmrmr1993
2017-11-18Note reason for this rather obscure line.Stephen Blott
2017-11-18Merge pull request #2800 from mrmr1993/ff-aggressively-restore-window-expandoStephen Blott
FF: Restore window expando on every event listener
2017-11-18Make clear that element need not be provided here.Stephen Blott
2017-11-18Merge pull request #2801 from mrmr1993/pr/search-for-scrolling-element-from-bodyStephen Blott
Start searching for scrollable elements from <body> instead of <html> whenever possible
2017-11-18Merge pull request #2817 from ↵Stephen Blott
mrmr1993/pr/link-hints-use-mode-push-for-modifier-handler Use Mode::push instead of manually removing a handler
2017-11-18Merge pull request #2815 from mrmr1993/pr/css-for-all-uiStephen Blott
Change description of CSS option
2017-11-16Use Mode::push to handle adding/removing a handlermrmr1993
2017-11-16Change description of CSS optionmrmr1993
2017-11-14Don't suppress default action for non-printing keys in link hintsmrmr1993
This restores the old behaviour prior to c4cc76e9f6a0a99ebc297e420be739a0fc77f827 (PR #2772).
2017-11-14Start searching for scrollable elements from <body> whenever possiblemrmr1993
2017-11-14FF: Restore window expando on every event listenermrmr1993
This should fix *most* problems from Firefox issue 1408996[1]. The root cause of the bug is that document.domain is set, and Firefox discards the 'expando' for the window that contains all properties we set. Technically, this can happen at any time, and so some failures are still possible. This fixes #2799. [1]: https://bugzilla.mozilla.org/show_bug.cgi?id=1408996
2017-11-12Merge pull request #2797 from mrmr1993/min-chrome-versionStephen Blott
Add minimum Chrome version of 51
2017-11-12Add minimum Chrome version of 51mrmr1993
Since key handling has been migrated to use KeyboardEvent.key, we need the user's Chrome version to support it. This support began at version 51 in May 2016. At time of writing, users have had over 16 months to upgrade.
2017-11-12Merge pull request #2794 from mrmr1993/gi-tabIndexStephen Blott
Make focusInput respect tabIndex
2017-11-12Use tabIndex to provide the special focusInput behaviour in the optionsmrmr1993
2017-11-12Make focusInput visit inputs according to tabIndex ordermrmr1993
2017-11-12Merge pull request #2788 from mrmr1993/no-mappable-modifiersStephen Blott
Don't resolve modifiers as keys
2017-11-11Remove unclear & unnecessary tabCount argument to updateVisibleMarkersmrmr1993
2017-11-11Clear tabCount explicitly when needed, instead of implicitly and undoingmrmr1993
This changes the behaviour of Enter and Space. * It should make no difference for Enter, as it exits the mode. * It makes no sense for rotating the layering of the hints to clear the active hint (when the next key is pressed), so I suspect it was an oversight.
2017-11-11Don't resolve modifiers as keysmrmr1993
2017-11-10Merge pull request #2782 from mrmr1993/suppress-link-hint-keysStephen Blott
Suppress link hint keys
2017-11-09Use HTML labels accessor to get link hint labels for input elementsmrmr1993
2017-11-09Stub DomUtils.consumeKeyup to fix handler stack testsmrmr1993
2017-11-09Suppress propagation for keyup events when we have for keydown eventsmrmr1993
2017-11-09Suppress keydown events for link hint charactersmrmr1993
2017-11-05Rationalise the order of these tests.Stephen Blott
The tests make more sense in this order.
2017-11-05Merge pull request #2772 from smblott-github/enable-more-keys-v2Stephen Blott
Add more named keys (version 2)
2017-11-05Note new mappable keys.Stephen Blott
2017-11-05Add more named keys (version 2)Stephen Blott
This allows any special key to mapped, simply by using the `event.key` key name. E.g. map <enter> scrollDown Replaces #2770. Fixes #2769.
2017-11-03Merge pull request #2766 from mrmr1993/bugs-fixupStephen Blott
Fix comments from #2763 and #2762
2017-11-03ContentEditable must be lower case here.Stephen Blott
See https://github.com/philc/vimium/pull/2762#issuecomment-341490268.
2017-11-02Compare with lower case strings when using toLowerCasemrmr1993
Credit to @gdh1995 for catching this.
2017-11-02Replace all references to selection.type with our FF polyfillmrmr1993
Credit to @gdh1995 for catching these oversights.
2017-11-02Merge pull request #2763 from mrmr1993/ff-find-modeStephen Blott
FF: Don't use Selection.getRangeAt(0) when there are no ranges
2017-11-02FF: Don't use Selection.getRangeAt(0) when there are no rangesmrmr1993
This fixes #2757.
2017-11-02Merge pull request #2762 from mrmr1993/gmail-rolesStephen Blott
Add some roles used by GMail to link hints
2017-11-02Add some roles used by GMail to link hints, reduce no. of comparisonsmrmr1993
2017-11-02Merge pull request #2761 from mrmr1993/typo-fixStephen Blott
Typos
2017-11-02Fix typosmrmr1993
This should have no user-facing impact.
2017-11-02Remove the right listener from hashchangemrmr1993
2017-11-01Merge pull request #2558 from mrmr1993/rectsOverlapKillStephen Blott
Simplify rectsOverlap
2017-11-01Use Rect.intersects instead of Rect.intersectsStrictmrmr1993
We don't care about overlap at the border here, so we can happily use intersects over intersectsStrict.
2017-11-01Rename Rect.rectOverlaps to Rect.intersectsStrict, clarify the commentmrmr1993
2017-11-01Rename Rect.contains to Rect.intersects, add an explanitory commentmrmr1993
2017-11-01Refine definition of Rects.rectsOverlapmrmr1993