diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-11-09 21:05:02 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-11-11 16:16:01 +0900 |
commit | e021504356016dc4cdb89356cae542c31486fe6a (patch) | |
tree | 9aca1822091301cff833632011e37d2a9f87fd1b /src/shared/messages.js | |
parent | 956dd937d33d167440d9d637f67ebff5d72353e5 (diff) |
first find implementation
Diffstat (limited to 'src/shared/messages.js')
-rw-r--r-- | src/shared/messages.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/shared/messages.js b/src/shared/messages.js index f859e93..de00a3f 100644 --- a/src/shared/messages.js +++ b/src/shared/messages.js @@ -24,13 +24,13 @@ const onMessage = (listener) => { export default { BACKGROUND_OPERATION: 'background.operation', - CONSOLE_BLURRED: 'console.blured', - CONSOLE_ENTERED: 'console.entered', + CONSOLE_UNFOCUS: 'console.unfocus', + CONSOLE_ENTER_COMMAND: 'console.enter.command', + CONSOLE_ENTER_FIND: 'console.enter.find', CONSOLE_QUERY_COMPLETIONS: 'console.query.completions', CONSOLE_SHOW_COMMAND: 'console.show.command', CONSOLE_SHOW_ERROR: 'console.show.error', CONSOLE_SHOW_INFO: 'console.show.info', - CONSOLE_HIDE_COMMAND: 'console.hide.command', CONSOLE_SHOW_FIND: 'console.show.find', FOLLOW_START: 'follow.start', @@ -42,6 +42,9 @@ export default { FOLLOW_ACTIVATE: 'follow.activate', FOLLOW_KEY_PRESS: 'follow.key.press', + FIND_NEXT: 'find.next', + FIND_PREV: 'find.prev', + OPEN_URL: 'open.url', SETTINGS_RELOAD: 'settings.reload', |