reset completion
This commit is contained in:
parent
e436b98808
commit
c507f7febf
1 changed files with 5 additions and 0 deletions
|
@ -111,6 +111,11 @@ const showCommand = (text) => {
|
|||
let input = window.document.querySelector('#vimvixen-console-command-input');
|
||||
input.value = text;
|
||||
input.focus();
|
||||
|
||||
completion = null;
|
||||
let container = window.document.querySelector('#vimvixen-console-completion');
|
||||
container.innerHTML = '';
|
||||
messages.send(parent, keyupMessage(input));
|
||||
}
|
||||
|
||||
const showError = (text) => {
|
||||
|
|
Reference in a new issue