aboutsummaryrefslogtreecommitdiff
path: root/src/console/console.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/console/console.js')
-rw-r--r--src/console/console.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/console/console.js b/src/console/console.js
index 3c7d61f..d139a50 100644
--- a/src/console/console.js
+++ b/src/console/console.js
@@ -43,7 +43,7 @@ const completeNext = () => {
}
let input = window.document.querySelector('#vimvixen-console-command-input');
- input.value = completionOrigin + item.content;
+ input.value = completionOrigin + ' ' + item.content;
}
const completePrev = () => {
@@ -56,7 +56,7 @@ const completePrev = () => {
}
let input = window.document.querySelector('#vimvixen-console-command-input');
- input.value = completionOrigin + item.content;
+ input.value = completionOrigin + ' ' + item.content;
}
const handleKeydown = (e) => {
@@ -80,6 +80,9 @@ const handleKeydown = (e) => {
};
const handleKeyup = (e) => {
+ if (e.keyCode === KeyboardEvent.DOM_VK_TAB) {
+ return;
+ }
if (e.target.value === prevValue) {
return;
}
@@ -157,7 +160,7 @@ const setCompletions = (completions) => {
window.completion = new Completion(flatten);
let input = window.document.querySelector('#vimvixen-console-command-input');
- completionOrigin = input.value;
+ completionOrigin = input.value.split(' ')[0];
}
messages.receive(window, (message) => {