rename command names
This commit is contained in:
parent
3e2820a6b4
commit
30999e0c65
2 changed files with 6 additions and 6 deletions
|
@ -8,20 +8,20 @@ var prevValue = "";
|
|||
|
||||
const blurMessage = () => {
|
||||
return {
|
||||
type: 'vimvixen.commandline.blur'
|
||||
type: 'vimvixen.command.blur'
|
||||
};
|
||||
};
|
||||
|
||||
const keydownMessage = (input) => {
|
||||
return {
|
||||
type: 'vimvixen.commandline.enter',
|
||||
type: 'vimvixen.command.enter',
|
||||
value: input.value
|
||||
};
|
||||
};
|
||||
|
||||
const keyupMessage = (input) => {
|
||||
return {
|
||||
type: 'vimvixen.commandline.change',
|
||||
type: 'vimvixen.command.change',
|
||||
value: input.value
|
||||
};
|
||||
};
|
||||
|
|
|
@ -77,16 +77,16 @@ window.addEventListener("keypress", (e) => {
|
|||
|
||||
messages.receive(window, (message) => {
|
||||
switch (message.type) {
|
||||
case 'vimvixen.commandline.blur':
|
||||
case 'vimvixen.command.blur':
|
||||
vvConsole.hide();
|
||||
break;
|
||||
case 'vimvixen.commandline.enter':
|
||||
case 'vimvixen.command.enter':
|
||||
browser.runtime.sendMessage({
|
||||
type: 'event.cmd.enter',
|
||||
text: message.value
|
||||
});
|
||||
break;
|
||||
case 'vimvixen.commandline.change':
|
||||
case 'vimvixen.command.change':
|
||||
browser.runtime.sendMessage({
|
||||
type: 'event.cmd.suggest',
|
||||
text: message.value
|
||||
|
|
Reference in a new issue