From 571cb9447552804e57d0f453b9642de55e02f317 Mon Sep 17 00:00:00 2001 From: Stephen Blott Date: Fri, 8 May 2015 10:21:39 +0100 Subject: Search completion; add space after inserted text. --- pages/vomnibar.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/vomnibar.coffee b/pages/vomnibar.coffee index 5f133a21..de1e6452 100644 --- a/pages/vomnibar.coffee +++ b/pages/vomnibar.coffee @@ -81,7 +81,7 @@ class VomnibarUI # and revert when not. This allows the user to select a suggestion and then continue typing. if 0 <= @selection and @completions[@selection].insertText? @previousInputValue ?= @input.value - @input.value = @completions[@selection].insertText + @input.value = @completions[@selection].insertText + " " else if @previousInputValue? @input.value = @previousInputValue @previousInputValue = null -- cgit v1.2.3