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.
40 lines
911 B
40 lines
911 B
const METHOD_REQUEST = 'request'; |
|
const METHOD_RESPONSE = 'response'; |
|
const WINDOWS_CREATE = 'windows.create'; |
|
const WINDOWS_REMOVE = 'windows.remove'; |
|
const WINDOWS_GET = 'windows.get'; |
|
const TABS_CREATE = 'tabs.create'; |
|
const TABS_SELECT_AT = 'tabs.selectAt'; |
|
const TABS_GET = 'tabs.get'; |
|
const TABS_UPDATE = 'tabs.update'; |
|
const TABS_REMOVE = 'tabs.remove'; |
|
const TABS_GET_ZOOM = 'tabs.get.zoom'; |
|
const TABS_SET_ZOOM = 'tabs.set.zoom'; |
|
const EVENT_KEYPRESS = 'event.keypress'; |
|
const EVENT_KEYDOWN = 'event.keydown'; |
|
const EVENT_KEYUP = 'event.keyup'; |
|
const SCROLL_GET = 'scroll.get'; |
|
const SCROLL_SET = 'scroll.set'; |
|
|
|
export { |
|
METHOD_REQUEST, |
|
METHOD_RESPONSE, |
|
|
|
WINDOWS_CREATE, |
|
WINDOWS_REMOVE, |
|
WINDOWS_GET, |
|
|
|
TABS_GET, |
|
TABS_UPDATE, |
|
TABS_CREATE, |
|
TABS_SELECT_AT, |
|
TABS_GET_ZOOM, |
|
TABS_SET_ZOOM, |
|
TABS_REMOVE, |
|
|
|
EVENT_KEYPRESS, |
|
EVENT_KEYDOWN, |
|
EVENT_KEYUP, |
|
SCROLL_GET, |
|
SCROLL_SET, |
|
};
|
|
|