aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
AgeCommit message (Collapse)Author
2015-01-06Modes; Note visual mode not yet implemented.Stephen Blott
2015-01-04Modes; various improvements.Stephen Blott
- Add StateMode. - PasskeysMode is a StateMode. - BadgeUpdateMode is a StateMode. - Improve badge handling. - Add push method to Mode. - Document how modes work. - Cache badge on background page to reduce the number of updates. - Remove badge restriction on document.body?.tagName.toLowerCase() == "frameset". - Add ExitOnEscape mode, use it for ConstrainedMode and FindMode. - Move PostFindMode to its own file.
2015-01-03Modes; visual-mode template.Stephen Blott
Visual mode command has been create: bound to `v`, of course. The template is in mode_visual.coffee. It shouldn't really be necessary to make changes outside of there. Let me know if you have any issues.
2015-01-02Modes; incorporate find mode.Stephen Blott
2015-01-02Modes; simplify badge handling.Stephen Blott
2015-01-02Modes; fix badges.Stephen Blott
2015-01-02Modes; rework badge handling and fix passkeys mode.Stephen Blott
2015-01-01Modes; incorporate three test modes.Stephen Blott
As a proof of concept, this incorporates normal mode, passkeys mode and insert mode.
2014-12-31Simplify search engine logic.Stephen Blott
2014-12-30Delay recognising query as search-engine query.Stephen Blott
2014-12-30Merge branch 'search-engine-descriptions' of ↵Stephen Blott
https://github.com/smblott-github/vimium into smblott-github-search-engine-descriptions
2014-12-30Merge branch 'master' into post-1.46Stephen Blott
2014-12-30Merge branch 'passkeys---union-of-rules' of ↵Stephen Blott
https://github.com/smblott-github/vimium into smblott-github-passkeys---union-of-rules
2014-12-30Exclusions; use querySelector to find sub-elements.Stephen Blott
As @philc pointed out in #1366, this is less brittle.
2014-12-30Add description to default search engines settings.Stephen Blott
2014-12-30Minor changes to vomnibar-in-iframe.Stephen Blott
From top to bottom on the diff: - The echo handler on the background page is no longer required. - Simplify/refactor vomnibarUI message handler. - Initialise vomnibar query to "" (rather than null) and simplify. - No need to focus parent window when vomnibar closes; that's handled by the iframe framework. Also no need to blur.
2014-12-29Remove UI component demo.Stephen Blott
2014-12-29Merge branch 'smblott-uicomponent-iframe' into post-1.46-with-uicomponent-iframeStephen Blott
Conflicts: content_scripts/vimium_frontend.coffee manifest.json
2014-12-29Descriptions for custom search engines.Stephen Blott
2014-12-29Merge pull request #1384 from ↵Stephen Blott
smblott-github/fix-search-custom-search-engine-support Uniform treatment of search queries
2014-12-29Refactor UIComponent, etc., and demo.Stephen Blott
- Simplify component API. - Iframe flashes on re-focus. - Probably some other stuff which I've forgotten.
2014-12-29IFrame framework; develop demo.Stephen Blott
2014-12-28Consistent treatment of search terms.Stephen Blott
2014-12-28Use + as separator for search engines.Stephen Blott
2014-12-24Merge remote-tracking branch 'upstream/master' into post-1.46Stephen Blott
2014-12-21fixes spelling errorJosh Kim
2014-12-21Exclusion; minor updates after review.Stephen Blott
2014-12-21Exclusion; fix tests.Stephen Blott
2014-12-21Exclusion; unique keys.Stephen Blott
2014-12-21Exclusion; show state.Stephen Blott
2014-12-21Exclusion; absolute exclusion rules taje priority.Stephen Blott
2014-12-21Exclusion; multi-rule matching.Stephen Blott
2014-12-21Exclusion; minor refactoring.Stephen Blott
2014-12-20Exclusion; allow multiple matching rules.Stephen Blott
2014-12-16Merge branch 'master' into post-1.46Stephen Blott
Conflicts: background_scripts/main.coffee
2014-12-16URIEncode search engine queries.Stephen Blott
2014-12-15Skip over tiny frames when calling focusThisFramemrmr1993
GMail and Google Inbox both use a large number of small (typically 0x0 or 1x1 frames) which we have to pass over with nextFrame to get to the frames we want. We avoid this issue by ignoring all frames with height or width < 3, since these will be essentially invisible to the user anyway.
2014-12-14Merge branch 'vomnibarToPage' of https://github.com/smblott-github/vimium ↵Stephen Blott
into smblott-github-vomnibarToPage Conflicts: background_scripts/main.coffee content_scripts/vimium.css content_scripts/vomnibar.coffee lib/utils.coffee
2014-12-14Remove default binding for LinkHints.activateModeToDownloadLink.Stephen Blott
LinkHints.activateModeToDownloadLink is newly-added, and hasn't been in a release before. It's an advanced command, and it's not clear it warrants a default binding.
2014-12-14Add comment to try/catch regexp.Stephen Blott
2014-12-14Wrap RegExp for exclusions in a try catch to prevent parse error failsmrmr1993
2014-11-30Merge pull request #1238 from ↵Phil Crosby
smblott-github/smooth-scrolling-requestAnimationFrame-repeat Smooth scrolling via requestAnimationFrame, with keyboard repeat
2014-11-24Frames; eliminate Array::rotate (and support large counts).Stephen Blott
2014-11-24Frames; eliminate Array::rotate.Stephen Blott
Array::rotate extends the array object, polluting its name space; so, instead, we just rotate the array manually.
2014-11-23Frames; more cleanup and simplification.Stephen Blott
2014-11-23Frames; just add new frames to the end.Stephen Blott
We don't need to worry where frames are added, nextFrame will find the right frame to start from anyway.
2014-11-23Frames; always start rotation from the current frame.Stephen Blott
2014-11-23Frames; remove unnecessary comments.Stephen Blott
2014-11-23Frames; do not guess frame on unregisterFrame.Stephen Blott
2014-11-23Frames; more tidy up; fix typo.Stephen Blott