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
|
||||
};
|
||||
};
|
||||
|
|
Reference in a new issue