| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-02-18 | Wait-for-enter: add necessary option support. | Stephen Blott | |
| 2016-02-18 | Wait-for-enter: for filtered hints. | Stephen Blott | |
| This affects filtered hints only. If a hint is triggered because the user typed the link text, then: - highlight the link - but wait until the user types `Enter` before activating the link. | |||
| 2016-02-18 | Fix typo in README.md. | Stephen Blott | |
| 2016-02-18 | Note passNextKey in README.md. | Stephen Blott | |
| 2016-02-18 | Merge pull request #1985 from smblott-github/pass-next-key | Stephen Blott | |
| New command: Pass next key | |||
| 2016-02-18 | PassNextKey; exclude single-character mappings. | Stephen Blott | |
| Consider: map q passNextKey This works fine in normal mode. However, in insert mode, when the user types "q" they expect "q" to be input. Any other behaviour would be pretty weird. Here, we filter out such mappings before the front end sees them. So, with: map q passNextKey map <c-]> passNextKey both mappings work in normal mode, but only the second works in insert mode. This is probably the behaviour likely to cause least user confusion. | |||
| 2016-02-18 | PassNextKey; minor tweak. | Stephen Blott | |
| 2016-02-18 | PassNextKey; fix tests. | Stephen Blott | |
| Oversight from 116ac2c2a279f8497ffd5396f43ac4fd7fd5de67. | |||
| 2016-02-18 | PassNextKey; allow multiple mappings. | Stephen Blott | |
| This allows: map a passNextKey map b passNextKey (Previously, we only picked up the first mapping.) | |||
| 2016-02-18 | PassNextKey; handle pass-next-key in insert mode. | Stephen Blott | |
| (First "fully" functional version.) | |||
| 2016-02-18 | PassNextKey; move key parsing to keyboard_utils.coffee. | Stephen Blott | |
| Previously, key event parsing was embedded in the normal-mode key handlers. Here, we move it to a new function (getKeyCharString) in KeyboardUtils so that it can also be used from elsewhere... In particular for detecting the pass-next-key key in insertmode. | |||
| 2016-02-18 | PassNextKey; store key mapping in settings. | Stephen Blott | |
| We need the key mapped to passNextKey in the front end so that we can activate pass-next-key from within insert mode too (without the need to consult the background page). | |||
| 2016-02-18 | PassNextKey; initial implementation. | Stephen Blott | |
| This implements a passNextKey command (initially for normal mode only), as discussed in #1955. | |||
| 2016-02-16 | Merge pull request #1994 from mrmr1993/correct-loop-types-2 | Stephen Blott | |
| Use `for own ... of` instead of `for ... of` | |||
| 2016-02-16 | Use `for own ... of` instead of `for ... of` | mrmr1993 | |
| 2016-02-14 | Merge pull request #1991 from smblott-github/nuke-some-migrations | Stephen Blott | |
| Nuke some legacy migration code. | |||
| 2016-02-14 | Merge pull request #1993 from smblott-github/filtered-hints-word-split | Stephen Blott | |
| Split filtered hints on non-word and hint characters. | |||
| 2016-02-14 | Split filtered hints on non-word and hint characters. | Stephen Blott | |
| This affects the scoring system for filtered link hits, and therefore affects their usability. Example link text: "We open all day", say 7Eleven Previously: "We open all day", say 7Eleven With this PR: we open all day say Eleven Previously: the typed text `we` and `day` would receive poor scores (not the start of a word, and not a whole word. Now, these get high scores, so are more likely to be selected as the active link. Also, `7Eleven` cannot be typed (because `7` is a hint character). With this PR, the typed text `we` `day` now get high scores, as they should. | |||
| 2016-02-12 | Nuke some legacy migration code. | Stephen Blott | |
| These migrations are at least ten months old (since release). | |||
| 2016-02-12 | Note visitPreviousTab command in README.md. | Stephen Blott | |
| 2016-02-12 | Merge pull request #1984 from smblott-github/previous-tab | Stephen Blott | |
| New command: visit previous tab. | |||
| 2016-02-11 | Merge pull request #1977 from mrmr1993/help-dialog-uicomponent | Stephen Blott | |
| Move help dialog to a UIComponent | |||
| 2016-02-11 | Change HelpDialog. to @ for methods inside the HelpDialog object | mrmr1993 | |
| 2016-02-11 | Only load help dialog iframe when the dialog is to be shown | mrmr1993 | |
| 2016-02-11 | Add a comment explaining why HelpDialog has seemingly redundant fields | mrmr1993 | |
| 2016-02-11 | Show vomnibar above the help dialog, remove an unnecessary CSS rule | mrmr1993 | |
| 2016-02-11 | Tidy up detection for the current page and context belonging to us | mrmr1993 | |
| 2016-02-10 | BgUtils; two fixes... | Stephen Blott | |
| - handle case where there's only one tab - also focus the selected tab's window | |||
| 2016-02-09 | BgUtils; implement visitPreviousTab. | Stephen Blott | |
| Implements visitPreviousTab (as discussed in #1955). | |||
| 2016-02-09 | BgUtils; move tabRecency to bg_tiles.coffee. | Stephen Blott | |
| Certain background-page utilities are actually shared, and are therefore best placed in place that reflects that. Here, tabRecency is moved to the new gb_utils.coffee in preparation for implementing a go-to-previous-tab command. In particular, it is no longer appropriate that tabRecency be embedded within the completion code. logMessage() from main.coffee is also a candidate for moving to bg_utils.coffee. | |||
| 2016-02-05 | Stop options page link from blurring the help dialog iframe | mrmr1993 | |
| 2016-02-04 | Revert "Tweaks to #1966." | Stephen Blott | |
| This reverts commit 4874362d8f14d2cdf712a4c01ac756f2dd6f6e4c. | |||
| 2016-02-04 | Tweaks to #1966. | Stephen Blott | |
| 2016-02-03 | Hide help dialog when clicking outside of it | mrmr1993 | |
| 2016-02-03 | Fix closing the help dialog | mrmr1993 | |
| 2016-02-03 | Prevent nested help dialog iframes | mrmr1993 | |
| 2016-02-03 | Move help dialog into an iframe | mrmr1993 | |
| 2016-02-03 | Move toggleHelpDialog to HelpDialog.toggle | mrmr1993 | |
| 2016-02-03 | Move frameId check from toggleHelpDialog to its message listener | mrmr1993 | |
| 2016-02-03 | Move isShowingHelpDialog to HelpDialog.showing | mrmr1993 | |
| 2016-02-03 | Rename VimiumHelpDialog to HelpDialog | mrmr1993 | |
| 2016-02-03 | Remove redundant functions show/hideHelpDialog | mrmr1993 | |
| 2016-02-03 | Show/hide advanced commands with CSS class, other tidying | mrmr1993 | |
| 2016-02-03 | Update only help dialog contents when showing | mrmr1993 | |
| 2016-02-03 | Use <span>s as placeholders in help_dialog.html | mrmr1993 | |
| 2016-02-03 | Store help dialog injected strings together, inject all at once | mrmr1993 | |
| 2016-02-03 | Restructure VimiumHelpDialog so show and init have appropriate code | mrmr1993 | |
| 2016-02-03 | Move help dialog hide code into VimiumHelpDialog.hide | mrmr1993 | |
| 2016-02-03 | Move remaining help dialog show code into VimiumHelpDialog.show | mrmr1993 | |
| 2016-02-03 | Move help dialog setup to VimiumHelpDialog.init | mrmr1993 | |
