aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/link_hints.coffee
AgeCommit message (Collapse)Author
2014-08-21Update link_hints.coffeeTimo Sand
2014-08-21Added feature to download linksTimo Sand
2014-04-30Merge remote-tracking branch 'mrmr1993/openLinkInFGTab'Phil Crosby
Conflicts: content_scripts/link_hints.coffee
2014-04-25Make a function more clearly a functionPhil Crosby
2014-04-25Merge pull request #1040 from mrmr1993/noCacheLHFilterTypePhil Crosby
Query filterLinkHints setting every time, not just page load
2014-04-25Query filterLinkHints setting every time, not just page loadmrmr1993
2014-04-25Fix Open Link in Current Tab commandmrmr1993
2014-04-25Remove unnecessary checks for ctrl, shift keys in LinkHintsmrmr1993
2014-04-25Change description and names in LinkHints for claritymrmr1993
2014-04-25Remove the link hint activation delayPhil Crosby
Adding 400 ms delay to every click sucks. It's a good UX to see which link you clicked on, but I think the cost is too high. Give this a try and let me know if you think it's too jarring. This is in response to #799.
2014-04-23Prevent passing through <ctrl> in LinkHintsmrmr1993
2014-04-23Allow tap to toggle LinkHints mode, remove nonfiring codemrmr1993
2014-04-23Fix typomrmr1993
2014-04-23Add openlinks in foreground mode and fix #1035mrmr1993
2014-04-23Merge pull request #838 from sainaen/fix_handlerStackPhil Crosby
Fix minor error with handlerStack in content script
2013-09-12Changed deprecated chrome.extension on chrome.runtime in all files and fix testsMaksim Ryzhikov
2013-05-12Fix error with handlerStack in link_hints content scriptsainaen
2013-05-06Replace all deprecated sendRequest() calls with new sendMessage()sainaen
2013-03-06Shorten names.Jez Ng
2013-02-17Implemented opening links in IncognitoTimo Sand
2013-02-17Trying to add incognito window openingTimo Sand
2012-12-18Fix #464 - Support placeholder attribute for inputs in find modemike
Whereas find mode normally identifies inputs by their value, if a value is blank, find mode will use the placeholder value instead, if it exists
2012-12-09Don't close link hints when shift is pressedChristopher Manning
2012-10-29Make the numbers used in the filtered link hints configurable.Jez Ng
Closes #380.
2012-10-24Use insertCSS() API instead of manually created style element.Jez Ng
For some reason addCssToPage seemed to break on Chrome 24. Closes #676.
2012-10-23Store 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-23Avoid spurious HUD after shift-toggling tab opening behavior.Jez Ng
2012-10-20Deactivate alphabetical hints mode if keypress is not a hint char.Jez Ng
Closes #638, #287.
2012-10-20Refactor 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-09-09More lint fixes.Jez Ng
2012-09-04Style fixes.Jez Ng
Errors were detected using coffeelint.
2012-09-03Make 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-08-20More 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-09Fix regression in shuffleHints()guns
Index variable `i` accidentally undeclared in `for in` loop cf. ed21d9b1abe42c1556f27390476302a1393dedb8
2012-08-04Refactor link hints to be more functional.Jez Ng
This paves the way for the hints code to be reused in other modes.
2012-08-04linkHintCss should be accessed via settings. Closes #605.Jez Ng
2012-07-07Put hints mode under a lock.Jez Ng
This avoids problems when the user does something like `2f`.
2012-07-06Use more Coffeescript idioms.Jez Ng
2012-06-17Fix a regression where link hint chars were passed through to the underlying ↵Phil Crosby
page.
2012-06-12Port link_hints.js to coffeescriptPhil Crosby