| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-11-02 | Avoid trapping non-tab keypresses in focusInput mode. | Jez Ng | |
| 2012-10-28 | Ensure the initial selection index is always respected. | Jez Ng | |
| Closes #687. | |||
| 2012-10-26 | Address feedback. | Jez Ng | |
| 2012-10-24 | Use insertCSS() API instead of manually created style element. | Jez Ng | |
| For some reason addCssToPage seemed to break on Chrome 24. Closes #676. | |||
| 2012-10-23 | Store all 4 hints-mode states in 1 state variable. | Jez Ng | |
| We were previously storing 4 states in 3 booleans, which was overkill. It was also harder to reason about and led to subtle bugs in the HUD when transitioning between states. | |||
| 2012-10-23 | Avoid spurious HUD after shift-toggling tab opening behavior. | Jez Ng | |
| 2012-10-23 | Refactor and fix findAndFollowLink. Closes #650. | Jez Ng | |
| * Fix bug where symbols that were themselves word boundaries were not getting matched * Factor out some operations for efficiency * Add tests | |||
| 2012-10-20 | Deactivate alphabetical hints mode if keypress is not a hint char. | Jez Ng | |
| Closes #638, #287. | |||
| 2012-10-20 | Refactor handlerStack. Closes #657. | Jez Ng | |
| Previously, handlerStack was designed only for removal of the handler right at the top of the stack. However, some handlers sought to remove themselves when they were not at the top of the stack, creating confusion. The new handlerStack ensures that such removal can always be done safely. | |||
| 2012-10-20 | Fix initial selected input hint index. | Jez Ng | |
| 2012-10-20 | Ensure Vomnibar selection is always within bounds. | Jez Ng | |
| Closes #670. | |||
| 2012-09-12 | Use block strings | Darren Jeacocke | |
| 2012-09-10 | Add missing vimiumReset. | Jez Ng | |
| 2012-09-10 | Add option to make regex find the default. Closes #569. | Jez Ng | |
| 2012-09-09 | More lint fixes. | Jez Ng | |
| 2012-09-08 | Fix upgrade message. Closes #644. | Jez Ng | |
| 2012-09-04 | Style fixes. | Jez Ng | |
| Errors were detected using coffeelint. | |||
| 2012-09-03 | Merge pull request #640 from mgarriott/get_showadvanced_from_settings | Jez Ng | |
| The help dialog now gets showAdvancedCommands directly from settings. | |||
| 2012-09-03 | Make hints tests pass again. | Jez Ng | |
| Convert them to Coffeescript at the same time. We really need to set up some automated way of running these tests, to ensure they don't keep breaking. | |||
| 2012-09-03 | Ignore content script requests in options page. | Jez Ng | |
| 2012-09-03 | The help dialog now gets showAdvancedCommands directly from settings. | Matt Garriott | |
| 2012-09-02 | Add comments describing the focusInput behavior. | Jez Ng | |
| 2012-09-02 | Merge branch 'focus-input' | Jez Ng | |
| 2012-09-01 | Merge pull request #628 from mgarriott/help_bug_fixes | Phil Crosby | |
| Help Dialog bug fixes | |||
| 2012-08-31 | Removed unneeded comments. | Matt Garriott | |
| 2012-08-26 | frontend: Error when canceling ('esc') findMode | Carl Helmertz | |
| document.activeElement does not get set prior to 1 Entering find mode; and 2 Canceling ('esc') before being satisfied with keyword ('enter') Signed-off-by: Carl Helmertz <helmertz@gmail.com> | |||
| 2012-08-26 | frontend: performFind was not focusing the next a-element | Carl Helmertz | |
| To reproduce, pre-this-patch: 1 Enter find mode ('/') 2 Search for something that matches multiple a-hrefs on the page 3 'Enter' to indicate that you've found your search term 4 findNext ('n') 4a Now, the next element get's a highlight but is not focused 5 activate/goto ('enter') 5a The first found match (3) is triggered An easy way to reproduce: go to a gitweb page, search for "summary", try to go to any but the first link's href. Signed-off-by: Carl Helmertz <helmertz@gmail.com> | |||
| 2012-08-25 | The help dialog will now properly read the user's preference for showing ↵ | Matt Garriott | |
| advanced commands. | |||
| 2012-08-25 | The help dialog now initializes the javascript from the within | Matt Garriott | |
| vimium_frontend.coffee. All that is left now is to get the user's settings for the showAdvancedCommands option. | |||
| 2012-08-24 | Fixed 'Show advanced commands' link on the options page. | Matt Garriott | |
| 2012-08-21 | Style input hints as number-less overlays. | Jez Ng | |
| 2012-08-21 | Shift-tab scrolls backwards in focus-input mode. | Jez Ng | |
| 2012-08-21 | Highlight the selected hint with a different color. | Jez Ng | |
| The actual color / appearance could probably use some tweaking. | |||
| 2012-08-21 | Don't show hints on `gi` if there is only one input element. | Jez Ng | |
| 2012-08-21 | Prototype for tab-through-input-elements feature. Refs #508. | Jez Ng | |
| 2012-08-21 | Don't follow prev/next links without an exact word match. | Jez Ng | |
| Closes #617. | |||
| 2012-08-20 | More refactoring-cleanup. | Jez Ng | |
| * vimium_frontend now has a pretty decent set of exports * Generic linkHints code has been moved to DomUtils, so future features can reuse the code. | |||
| 2012-08-09 | Fix regression in shuffleHints() | guns | |
| Index variable `i` accidentally undeclared in `for in` loop cf. ed21d9b1abe42c1556f27390476302a1393dedb8 | |||
| 2012-08-06 | vomnibar: New tabs for 'O' and 'B' | Carl Helmertz | |
| 'B' is a new command for searching for a bookmark and opens it in a new tab. 'O' now searches through history and bookmarks and opens the selected item in a new tab. Previously, it started vomnibar with the current URI selected and opened the selection in the same tab. This fixes #594. Signed-off-by: Carl Helmertz <helmertz@gmail.com> | |||
| 2012-08-04 | Refactor link hints to be more functional. | Jez Ng | |
| This paves the way for the hints code to be reused in other modes. | |||
| 2012-08-04 | Convert one-shot ports to requests. Closes #8 (!!) | Jez Ng | |
| 2012-08-04 | Convert 'getScrollPosition' from port to request. | Jez Ng | |
| 2012-08-04 | linkHintCss should be accessed via settings. Closes #605. | Jez Ng | |
| 2012-07-22 | Use vimium-specific class names, and use vimium reset. Now the vomnibar is ↵ | Phil Crosby | |
| more resistant to a site's css. Previously the vomnibar didn't look great on Quora because of this. | |||
| 2012-07-15 | Close omnibar when enter is pressed (#585) | Aaron Hall | |
| 2012-07-07 | Select the first result by default for tabs and bookmarks modes | ilya | |
| 2012-07-07 | URL decode bookmarklets | ilya | |
| 2012-07-07 | Make Vomnibar tabbing scroll circularly. | Jez Ng | |
| 2012-07-07 | Put hints mode under a lock. | Jez Ng | |
| This avoids problems when the user does something like `2f`. | |||
| 2012-07-07 | eval bookmarklets -- setting window.location doesn't always work. | Jez Ng | |
