aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
AgeCommit message (Collapse)Author
2013-05-07Tweak to make if statement positively formedPhil Crosby
2013-05-07Merge pull request #816 from UncleBill/masterPhil Crosby
Fix issue #772
2013-05-06Replace all deprecated sendRequest() calls with new sendMessage()sainaen
2013-04-15fix issue #772UncleBill
2013-03-06Shorten names.Jez Ng
2013-03-06Merge remote-tracking branch 'deiga/patch-4'Jez Ng
Conflicts: background_scripts/commands.coffee
2013-03-03Revert accidental change.Jez Ng
2013-03-02Map moveTabToNewWindow to `W`.Jez Ng
We should reserve easily-pressed keys for commonly-used actions.
2013-03-02Merge remote-tracking branch 'deiga/float-tab' into HEADJez Ng
Conflicts: background_scripts/commands.coffee background_scripts/main.coffee
2013-03-02Disable repeated tab closing. Refs #555.Jez Ng
2013-02-19Merge pull request #783 from deiga/patch-2Phil Crosby
Added `gU` command to go to root of page including current port and protocol
2013-02-18Renamed to 'goToRoot', condensed functionTimo Sand
2013-02-18Removed erroneous log callTimo Sand
2013-02-18Moved to advanced commands and renamed command for clearnessTimo Sand
2013-02-17Added functionality to "float" current tab ie. open in new windowTimo Sand
2013-02-17Implemented opening links in IncognitoTimo Sand
2013-02-17Trying to add incognito window openingTimo Sand
2013-02-16Added `gU` command to go to root of page including current port and protocolTimo Sand
2013-02-16Finalized duplicateTab featureTimo Sand
2013-02-16Added commands for duplicate tabTimo Sand
2013-02-16Added duplicateTab callTimo Sand
2013-01-02Make smartcase locale-aware.Jez Ng
2012-12-16Merge pull request #741 from christophermanning/issue-690Jez Ng
Focus window the tab is in when selecting a specific tab.
2012-12-07Focus window the tab is in when selecting a specific tabChristopher Manning
2012-11-14RegexpCache: reorganise and improve tests.Stephen Blott
2012-11-13Smartcase matching for vomnibar.Stephen Blott
Vomnibar queries are case insensitive, unless the query contains a capital letter.
2012-11-12Improve unit test structure and coverage.Stephen Blott
2012-11-11Changes in responce to philc's recommendations.Stephen Blott
See: https://github.com/philc/vimium/pull/715
2012-11-11More simplification/refactoring.Stephen Blott
2012-11-11Refactor domain maintenance code.Stephen Blott
2012-11-11Remove comments regarding non-existent bug.Stephen Blott
2012-11-11Extend removing entries to the domain completer.Stephen Blott
2012-11-11Remove history entries.Stephen Blott
When a chrome history entry is removed, remove that entry from our history too. Same when the entire history is removed.
2012-11-10Merge pull request #704 from smblott-github/relevancyJez Ng
Highlight all matches in a vomnibar suggestion, not just the first.
2012-11-09Merge pull request #707 from smblott-github/small-bugsJez Ng
Minor fixes.
2012-11-07Fix incorrect/misleading comment.Stephen Blott
2012-11-05Avoid empty query terms.Stephen Blott
With the previous version, a query like "hello there" yielded: [ "hello", "", "", "there" ] as the queryTerms.
2012-11-05Looks like missing parentheses.Stephen Blott
This is looks wrong, and is inconsistent with the way the equivalent calculation is handled elsewhere. This commit fixes it.
2012-11-05Factor pushMatchingRanges, improve comments/testsStephen Blott
1. Factor out `pushMatchingRanges`: This then allows us to ... 2. Add unit tests for `pushMatchingRanges` In effect, these tests verify where matches are highlighted in suggestions. 3. Added Utils.zip. This helps simplify `pushMatchingRanges` unit tests. 4. Improve comments.
2012-11-04Highlight all matches, not just the first.Stephen Blott
2012-11-04Generalise RegexpCache, refactor, add tests.Stephen Blott
This is a no-op, currently. It's just setting up the RegexpCache interface for subsequent development.
2012-11-03Fix race condition in tabInfo deletion.Jez Ng
Also initialize tabInfo fields at once, so as to avoid unnecessary hidden class transitions.
2012-11-03scrollStepSize migration will now be done in v1.43.Jez Ng
2012-11-03Handle update messages that arrive after a tab has closed.Jez Ng
Previously, we were throwing errors when trying to modify nonexistent members of `openTabs`, due to messages arriving after the onRemoved notification. We now delay garbage-collecting openTabs, and rename openTabs to tabInfoMap to reflect that the tabs are not necessarily open.
2012-11-03Remove some parentheses.Jez Ng
2012-11-03Minor touchups.Jez Ng
2012-11-03Merge pull request #702 from smblott-github/relevancy-fixJez Ng
Improve consistency and fix bug in relevancy calculation.
2012-11-03Bug fix. Not all query terms matched.Stephen Blott
Additionally, add relevant test cases.
2012-11-03Refactor RankingUtils.matches() to use splat.Stephen Blott
2012-11-03Improve consistency and fix relevancy calculation.Stephen Blott
Problem: - The word relevancy calculation is case sensitive, all other matching is case insensitive. Improve consistency: - Highlighting of elements in the vomnibox is case insensitive; this does not match the case sensitive relevancy calculation. Fix: - Bookmark titles, in particular, tend to contain capital letters. Unless the query term also contains the relevant capital letters, then the term was scored at zero, pushing what seem to be good matches to the bottom of the list. In fact, they were only included in the list at all because they happen to pass the `RankingUtils.matches()` test.