From e7f75e2c6add8048beb1f4dd2703766f016497bd Mon Sep 17 00:00:00 2001 From: Phil Crosby Date: Sat, 2 Jun 2012 20:08:35 -0700 Subject: A WIP rewrite of completion in the vomnibar. The purpose of this refactor is to simplify the contract so it's easier to modify, and to make some substantial usability improvements. One of the key differences is that matching is no longer fuzzy. If you want to search more than one term, separate them by spaces. This matches the behavior in Firefox. While fuzzy matching is a nice experience for a limited set of known items (like files in the current project), it doesn't work well for a huge messy collection, like URLs in your history. The query "hello" will match random stuff from your google search results for instance, and it's hard to prune that noise using ranking intelligence. --- vimium.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vimium.css') diff --git a/vimium.css b/vimium.css index 52d8f1aa..31092542 100644 --- a/vimium.css +++ b/vimium.css @@ -327,7 +327,7 @@ body.vimiumFindMode ::selection { #vomnibar li .url { color: #224684 !important; } -#vomnibar li .fuzzyMatch { +#vomnibar li .match { font-size: inherit !important; font-family: inherit !important; font-weight: bold !important; @@ -342,7 +342,7 @@ body.vimiumFindMode ::selection { font-family: inherit !important; } #vomnibar li em { font-style: italic !important; } -#vomnibar li em .fuzzyMatch, #vomnibar li .title .fuzzyMatch { +#vomnibar li em .match, #vomnibar li .title .match { color: #333 !important; text-decoration: underline !important; } -- cgit v1.2.3