diff options
| author | Stephen Blott | 2015-05-03 15:00:03 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-05-03 15:00:03 +0100 |
| commit | 7d59e948da154203722b442c477b452f7a393161 (patch) | |
| tree | b42677c77f0bf67d0f239e780ebec36fef99d412 | |
| parent | db59e05216ff0ce6bdd5af5fb6a6f7f3b1860a8e (diff) | |
| download | vimium-7d59e948da154203722b442c477b452f7a393161.tar.bz2 | |
Search completion; add space in vomnibar.
| -rw-r--r-- | pages/vomnibar.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/vomnibar.coffee b/pages/vomnibar.coffee index 831f8dd3..2076fea6 100644 --- a/pages/vomnibar.coffee +++ b/pages/vomnibar.coffee @@ -99,7 +99,7 @@ class VomnibarUI if 0 <= @selection and @completions[@selection].insertText @previousText ?= @input.value suggestion = @completions[@selection] - @input.value = (suggestion.reinsertPrefix ? "") + suggestion.title + @input.value = (suggestion.reinsertPrefix ? "") + suggestion.title + " " else if @previousText? @input.value = @previousText @previousText = null |
