diff options
| author | Stephen Blott | 2015-05-04 13:29:48 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-05-04 13:29:48 +0100 |
| commit | 44b24f43a30e2f2ebe47e70e74413488ad3a676f (patch) | |
| tree | 84eaae139c6b2988878de7463b932e9d87344352 /background_scripts | |
| parent | 7f99155824edd7424bd28feae401459da6a2ba8f (diff) | |
| download | vimium-44b24f43a30e2f2ebe47e70e74413488ad3a676f.tar.bz2 | |
Search completion; fix mistake with autoSelect.
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/completion.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/completion.coffee b/background_scripts/completion.coffee index 1c07a71a..d206a285 100644 --- a/background_scripts/completion.coffee +++ b/background_scripts/completion.coffee @@ -24,7 +24,7 @@ class Suggestion # When @autoSelect is truthy, the suggestion is automatically pre-selected in the vomnibar. @autoSelect = false # If @noHighlightTerms is falsy, then we don't highlight matched terms in the title and URL. - @autoSelect = true + @noHighlightTerms = false # If @insertText is a string, then the indicated text is inserted into the vomnibar input when the # suggestion is selected. @insertText = null |
