aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-02-01Merge pull request #1963 from smblott-github/link-hints-with-countStephen Blott
Link hints with count
2016-02-01Use a count with link hints; better comment.Stephen Blott
2016-02-01Use a count with link hints; exit on Backspace.Stephen Blott
Normally, `Backspace` exits hints mode. It should exit hint mode with a count too.
2016-02-01Merge pull request #1962 from smblott-github/focus-input-fix-visual-indicatorStephen Blott
Fix visual indicator for `focusInput()`.
2016-02-01Focus input: use Rect.copy element.getBoundingClientRect().Stephen Blott
2016-01-31Use a count with link hints; working w/ Escape.Stephen Blott
With a count, link hints now exit on `Escape`.
2016-01-31Pass arguments to modes' onExit handlers.Stephen Blott
2016-01-31Fix visual indicator for `focusInput()`.Stephen Blott
Currently, if an input is only partially in the view port, then the page may scroll when it is focused and the overlays for `focusInput()` are wonky. See #1257. Here, we draw the overlay around the *entire* input, instead of just around the visible part. Being partially visible therefore is no longer relevant. Fixes #1257. Closes #1258.
2016-01-31Remove code omitted from 68a39707817ab8693e1ddd9381611c0bfb46ebaa.Stephen Blott
2016-01-31Use a count with link hints.Stephen Blott
Pass a count to link-hint commands, and the link-hint mode is started that many times (except "with queue"). This resolves the same issue as #1291. However, this: - does not require re-basing (which is no biggie), and - keeps all of the count-handling logic (apart from plumbing) in one place, in `LinkHints.activateMode()`. The link-hints mode itself does not know anything about count handling. Serious bug: - Using `Escape` to exit does not cancel the repeat! Fixes #1289. Closes #1291.
2016-01-31Merge branch 'goToLine'Stephen Blott
2016-01-31Fix oversight in 7f3ae1ffcf3185392cf30a62f4b83474b68f66cc.Stephen Blott
One line was unintentionally deleted.
2016-01-31Merge pull request #1958 from smblott-github/logging-pageStephen Blott
Add a logging page...
2016-01-31Merge pull request #1961 from smblott-github/remove-edit-modeStephen Blott
Wholly remove edit-mode code.
2016-01-31Wholly remove edit-mode code.Stephen Blott
I am now of the opinion that we should not do this within Vimium, as: - better solutions exist externally, and - it's better to not have to maintain this.
2016-01-31Merge pull request #1960 from ↵Stephen Blott
smblott-github/link-hints-better-score-shorter-texts Better scoring for filtered hints.
2016-01-31Better scoring for filtered hints.Stephen Blott
It is often the case that an encosing element (parent) and a child are both clickable, and both contain the same text. In this case, it is usually better to pick the child. So, here, we dampen down the score of elements with longer texts.
2016-01-31Merge pull request #1908 from smblott-github/fix-ctrl-escapeStephen Blott
For Ctrl-[, also require NOT Alt
2016-01-31Merge pull request #1819 from mrmr1993/unhover-links-when-clicking-link-hintStephen Blott
Emit mouseout for the last link when clicking a new link with link hints
2016-01-31Add a basic log page; tweaks.Stephen Blott
This tweaks @mrmr1993's logging ideas discussed in #1629: - Do not generate log entries from the logging page itself. - Use the logger for *all* logging (including from `commands.coffee`, and from `bgLog`). @mrmr1993's original idea is 91fb337c9d92f6291ef42c55c4d29ca35b710203.
2016-01-30Bump version to 1.541.54Phil Crosby
2016-01-30Fix line wrapPhil Crosby
2016-01-30Reference the FAQ from the READMEPhil Crosby
2016-01-30Merge pull request #1954 from smblott-github/link-hints-need-linksStephen Blott
Exit link hints if there are no links.
2016-01-30Rework unhovering to occur automatically for all simulated hoversmrmr1993
2016-01-30Exit link hints if there are no links.Stephen Blott
If there are no links on a page, then link-hints mode should exit immediately. Fixes #1395.
2016-01-30Emit mouseout when clicking a new element link hintsmrmr1993
2016-01-30Add a basic log pagemrmr1993
2016-01-30Merge pull request #1952 from smblott-github/link-hints-ignore-scrollStephen Blott
Do not exit link-hints mode on scroll.
2016-01-30Do not enter link-hints mode on scroll.Stephen Blott
Fixes #1918.
2016-01-30Merge pull request #1951 from mrmr1993/remove-cursor-hiderStephen Blott
Remove CursorHider
2016-01-30Remove CursorHidermrmr1993
2016-01-30Add number modifier to `gg' scrollToTop commandmrmr1993
2016-01-30Merge pull request #1949 from smblott-github/simpler-hint-stringStephen Blott
Simplify hint string generation
2016-01-29Simplify hint-string generation; tweaks.Stephen Blott
2016-01-29Simplify hint-string generation; filtered hints.Stephen Blott
2016-01-29Revert "Enable edit mode."Stephen Blott
This reverts commit e975633f3ee8da9e01c332b2dcdb8422d5f941d8.
2016-01-28Simplify hint-string generation; fix tests.Stephen Blott
2016-01-28Simplify hint-string generation; simplification.Stephen Blott
2016-01-28Simplify hint-string generation; tweaks.Stephen Blott
2016-01-28Simplify hint-string generationStephen Blott
2016-01-28Merge pull request #1942 from smblott-github/enable-edit-modeStephen Blott
Enable edit mode.
2016-01-28Merge pull request #1943 from smblott-github/do-not-move-selection-in-textareasStephen Blott
Disable position-at-end in text areas.
2016-01-26Collapse selection on exiting visual mode.Stephen Blott
This applies only to the case where visual mode is run under edit mode. Previously, we were leaving the selection in place ... which is weird and not vim-like.
2016-01-26Disable position-at-end in text areas.Stephen Blott
When we `simulateSelect` an input and the selection is at the start, we move it to the end. This works well for single-line inputs. However, the UX is *bad* for multiline inputs (such as text areas), and doubly so if the end of the input happens to be out of the viewport. This commit simply disables the repositioning of the selection within text areas.
2016-01-26Enable edit mode.Stephen Blott
This re-enables edit-mode (`gv`). The code for this has been present in `master` for quite some time, but has been disabled.
2016-01-26Merge pull request #1941 from smblott-github/temp-01Stephen Blott
Remove "beta" label from visual-mode commands.
2016-01-26Remove "beta" label from visual-mode commands.Stephen Blott
These seem to be working fine, we can commit to them.
2016-01-19Merge pull request #1934 from georgemillo/patch-1Stephen Blott
Spelling fixes
2016-01-18Spelling fixesGeorge Millo