A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
553 B
21 lines
553 B
7 years ago
|
export default {
|
||
7 years ago
|
// User input
|
||
|
INPUT_KEY_PRESS: 'input.key,press',
|
||
|
INPUT_CLEAR_KEYS: 'input.clear.keys',
|
||
7 years ago
|
INPUT_SET_KEYMAPS: 'input.set,keymaps',
|
||
7 years ago
|
|
||
|
// Completion
|
||
|
COMPLETION_SET_ITEMS: 'completion.set.items',
|
||
|
COMPLETION_SELECT_NEXT: 'completions.select.next',
|
||
7 years ago
|
COMPLETION_SELECT_PREV: 'completions.select.prev',
|
||
|
|
||
|
// Settings
|
||
|
SETTING_SET_SETTINGS: 'setting.set.settings',
|
||
7 years ago
|
|
||
|
// Follow
|
||
|
FOLLOW_ENABLE: 'follow.enable',
|
||
|
FOLLOW_DISABLE: 'follow.disable',
|
||
|
FOLLOW_KEY_PRESS: 'follow.key.press',
|
||
|
FOLLOW_BACKSPACE: 'follow.backspace',
|
||
7 years ago
|
};
|