aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-11-05Consistent capitalization on the options page.Stephen Blott
2014-11-05Disable scrolling for `overflow: hidden` elementsmrmr1993
2014-11-05Make help text on options page more concise.Stephen Blott
2014-11-03Tone down help messages in footer.Stephen Blott
2014-11-03Better function name in popupe.coffee.Stephen Blott
2014-11-03Activate Control-Enter on page popup.Stephen Blott
Control-Enter in either text input on the page popup saves changes and closes the popup.
2014-11-02Do not line wrap some text options.Stephen Blott
2014-11-02Options help text and grammar.Stephen Blott
2014-11-02Control-ENTER in text option blurs and saves all options.Stephen Blott
2014-11-02Reposition save button such that "always" on screen.Stephen Blott
2014-11-02Delete rule button for exclusion rules not tab selectable.Stephen Blott
2014-11-02Reduce the size of the excluded URLs container.Stephen Blott
2014-11-02Move custom search engines above the fold.Stephen Blott
2014-11-02Tweaks to options page.Stephen Blott
2014-11-02Minor tweak for clarity.Stephen Blott
2014-11-02Merge branch 'master' into customNewTabPageStephen Blott
2014-11-02Fix refresh open tabs and state.Stephen Blott
Fixes refresh of state bug introduced in 046650ba22ac12ebb18d1eb109fe694016eb77c0.
2014-11-02Don't skip installing listeners.Stephen Blott
Fix listener installation bug. To see bug, do: - open vimium options page - use 'b' to select and go to a bookmark - use <alt-LEFT_ARROW> to return to options page - vimium key bindings are now *not* installed Bug was introduced in 28e9c8374bfc7a4fd479dbb958a4a87331fb0857.
2014-11-02Touch up options page (newTabUrl).Stephen Blott
2014-11-02Merge branch 'customNewTabPage' of github.com:mrmr1993/vimium into ↵Stephen Blott
mrmr1993-customNewTabPage
2014-11-02Cosmetic tweaks for @smblott-githubmrmr1993
2014-11-02Merge branch 'customNewTabPage' of github.com:mrmr1993/vimium into ↵Stephen Blott
mrmr1993-customNewTabPage
2014-11-02Centralize handling of event propagation.Stephen Blott
2014-11-02Merge pull request #1219 from mrmr1993/fix-google-groupsStephen Blott
Force our key event handlers to have the highest possible priority
2014-11-02Automatically load content scripts into the options and blank pagesmrmr1993
Load all appropriate content scripts by traversing the list in the manifest. This removes the need to list them manually.
2014-11-02Optional custom new tab URLmrmr1993
This resolves #979.
2014-11-02Merge Utils.hasChromePrefix from mrmr1993.Stephen Blott
2014-11-02Refactor Utils.hasChromePrefix and add tests.Stephen Blott
2014-11-02Force our key event handlers to have the highest possible prioritymrmr1993
* The `window` object receives key events before the `document` object, and so any event listeners on `window` get priority. This commit switches from binding `keydown`, `keypress`, `keyup` on `document` to on `window`. * We were using `event.stopPropagation()` to prevent other event listeners from firing if we had handled an event. This stopped the event from propagating to other elements/objects and triggering their event listeners, but didn't block event listeners registered on the same object as ours. Switching to `event.stopImmediatePropagation()` ensures that our event listener is the last to run for the event. Fixing these issues allows Vimium to regain control over key events in Google Groups (eg. the [vimium-dev group](https://groups.google.com/forum/vimium-dev)).
2014-11-02Fix browser prefix detectionmrmr1993
2014-11-01Activate "Save" button on input (non-empty text areas).Stephen Blott
2014-11-01Activate "Save" button on input.Stephen Blott
2014-11-01Move "Custom key mappings" above the fold.Stephen Blott
2014-11-01Remove "Restore to defaults" button.Stephen Blott
And line up main frame with the first two columns of the main options table.
2014-11-01Help text for non-empty text options.Stephen Blott
2014-10-31Fix vomnibar/iframe tests.Stephen Blott
2014-10-31URLdecode string options for vomnibar.Stephen Blott
2014-10-31Reinstate .vomnibarIcon style.Stephen Blott
2014-10-31Merge vomnibarToPage from @mrmr1993.Stephen Blott
2014-10-31Add comments about moving the Vomnibar to an iframemrmr1993
2014-10-30Merge branch 'fix-tests' of github.com:mrmr1993/vimiumStephen Blott
2014-10-29Fix testsmrmr1993
2014-10-29Revert 2c7bebb5f2c873850c2b2d82013cab4eb3d4913cStephen Blott
On reflection, this seems too dangerous: - Somebody excluded flash for a reason, and without knowing that reason, it seems dangerous. - Imagine a flash game with key bindings. Perhaps it uses ? to show the key bindings, and ESC to hide them again. With 2c7bebb5f2c873850c2b2d82013cab4eb3d4913c, you can never hide the key bindings (I think). All in all, this just seems too risky.
2014-10-29Repair insert mode.Stephen Blott
I broke it here: 77e1ded091062ca2e52264d222482dcd06290a9b
2014-10-27Merge branch 'command-option-tests'Stephen Blott
2014-10-27Note need for more command tests.Stephen Blott
2014-10-27Merge pull request #1199 from smblott-github/command-option-testsStephen Blott
Command tests - validate advanced commands
2014-10-27Ensure advanced commands are in command groups.Stephen Blott
2014-10-27Validate each advanced command is in a command group.Stephen Blott
2014-10-27Fix tests for favicons.Stephen Blott