aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-06-05Global marks; fix indentation.Stephen Blott
2015-06-05Use keypress (instead of keydown) for link hint characters.Stephen Blott
This should make link hints usable on non-Latin keyboards (e.g. Russian keyboards). Fixes #1387. (Maybe - because it's not clear from the discussion there exactly what users want.)
2015-06-05Fix event suppression for Marks keyboard events.Stephen Blott
2015-06-04Fix issue with Google-Maps completion failing.Stephen Blott
2015-06-04Unwind passing key and registry entry for marks.Stephen Blott
As suggested by @mrmr1993 in #1716.
2015-06-04Use only ' and ` for jumping to previous position.Stephen Blott
As suggested by @mrmr1993 in #1716.
2015-06-04Global marks; only handle messages in main frame.Stephen Blott
On sites with several frames (e.g. Facebook), if we allow all of the frames to handle the setScrollPosition and showHudForDuration messages, then the focus ends up in an arbitrary frame. And, on Facebook, say, Vimium ends up broken until the focus is returned to the main frame. So, we only handle these messages in the main frame.
2015-06-04Global marks; focus and only scroll in the main frame.Stephen Blott
2015-06-04Global marks; prefer to re-use a tab in the current window.Stephen Blott
2015-06-04Global marks; use chrome.tabs.query.Stephen Blott
(As suggested by @mrmr1993 in #1716.)
2015-06-04Merge branch 'fix-marks-and-add-jump-back-to-previous-position' into ↵Stephen Blott
global-marks
2015-06-04Exit marks modes on escape.Stephen Blott
2015-06-04Global marks; better comments and fix typo.Stephen Blott
2015-06-04Global marks; move marks to chrome.storage.sync.Stephen Blott
2015-06-04Global marks; add note to release notes in README.Stephen Blott
2015-06-04Global marks; better comments and minor refactoring.Stephen Blott
2015-06-04Global marks; create a new tab, if necessary.Stephen Blott
2015-06-04Global marks; find another (existing) tab if tabId has been removed.Stephen Blott
2015-06-04Global marks; move marks to chrome.storage.Stephen Blott
2015-06-04README; tweak release notes.Stephen Blott
2015-06-04Help page, use separate row for long bindings.Stephen Blott
If there are many bindings for a command, then the column layout on the help page can become out of whack. This commit puts such bindings on a separate table row which spans all three columns. (Many bindings for a single command are more likely in light of #1697.)
2015-06-04Completion page; avoid building many separate strings.Stephen Blott
2015-06-03README; correct typo.Stephen Blott
2015-06-03README; correct (syntactically) inacurate informatiom.Stephen Blott
2015-06-03README; correct inacurate informatiom.Stephen Blott
2015-06-03README; improve consistency of Esc usage.Stephen Blott
2015-06-03README layout; avoid horizontal scroll bars.Stephen Blott
2015-06-03Make layout consistent in README commands.Stephen Blott
2015-06-03Modes, better comments.Stephen Blott
2015-06-03Add mark commands to README, more simple refactoring.Stephen Blott
2015-06-03Add mark commands to README, simple refactoring.Stephen Blott
2015-06-03Add mark commands to README, formattingStephen Blott
2015-06-03Add mark commands to README, wordingStephen Blott
2015-06-03Add mark commands to README, wordingStephen Blott
2015-06-03Add mark commands to README, move to own sectionStephen Blott
2015-06-03Add mark commands to README, fix spacingStephen Blott
2015-06-03Add mark commands to READMEStephen Blott
2015-06-03Refactor (to setPreviousPosition) to clarify Marks logic.Stephen Blott
2015-06-03Also set previous position for before global mark movement.Stephen Blott
2015-06-03Note `` in README.Stephen Blott
2015-06-03Re-implement Marks, incl `` binding.Stephen Blott
2015-06-03Fix tests for #1713...Stephen Blott
... which is weird, because the tests are passing here. Let's see what Travis makes of this.
2015-06-03Refactor to avoid having to cover all keyboard event cases.Stephen Blott
It's pretty common that we want to suppress all keyboard events, so let's support that in modes.coffee, thereby simplifying handlers elsewhere.
2015-06-03Note global-marks fix in "release notes".Stephen Blott
2015-06-03Fix marks (incl. global marks)...Stephen Blott
Fixes #1712: - Make global marks work. - Add mode indicator. - Don't fail for global marks on background page if mark is not set. - Give HUD warning for global marks if global mark is not set. (The diff is big but, which the exception of infrastructure refactoring, the main change is to not exit on <Shift>, thereby fixing #1712).
2015-06-03Completion page; add example DECLARATIONS to page.Stephen Blott
Instead of just giving an example search URL, we can give the actual declaration (which the user can copy, paste and tweak).
2015-06-03Completion page; add example URLs to page.Stephen Blott
This allows the user to copy and paste search URLs from this page into the options page.
2015-06-03Completion page; make examples data (not comments).Stephen Blott
For each completion engine, this adds an @example properties (not comments)
2015-06-03Only offer suggestions from the current custom search engine.Stephen Blott
When the user changes custom search engine during a single vomnibar activation, we should only offer suggestions which match the current search engine (not the previous one). We now do this not just by checking that the suggestion is a custom search suggestion, but by checking that the actual search URL matches.
2015-06-03Tweak vomnibar custom search behaviour.Stephen Blott
With this, if we're in custom search mode and the cursor is at the start of the vomnibar input and the user types <Delete>, then we exit custom search mode and reinstate the keyword (and arrange for the cursor to be in the right place). This makes it possible to change (or just disable) the custom search engine without having to first wholly delete the query.