diff options
| author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-07 07:51:39 +0900 | 
|---|---|---|
| committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-07 08:15:04 +0900 | 
| commit | 45368384d1bbcbc005bf1eb3cdc7f7c8b137c28c (patch) | |
| tree | 7c6e7ed12322ff6d74169e73524e8ffb5ce15a12 /src/actions/index.js | |
| parent | 4cb17031d11d76275de51e31218fb87359e7d826 (diff) | |
remove completion actions/reducer
Diffstat (limited to 'src/actions/index.js')
| -rw-r--r-- | src/actions/index.js | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/src/actions/index.js b/src/actions/index.js index 4e8d4a7..6a64795 100644 --- a/src/actions/index.js +++ b/src/actions/index.js @@ -1,9 +1,11 @@  export default {    // console commands -  CONSOLE_SHOW_COMMAND: 'vimvixen.console.show.command', -  CONSOLE_SET_COMPLETIONS: 'vimvixen.console.set.completions', -  CONSOLE_SHOW_ERROR: 'vimvixen.console.show.error', -  CONSOLE_HIDE: 'vimvixen.console.hide', +  CONSOLE_SHOW_COMMAND: 'console.show.command', +  CONSOLE_SET_COMPLETIONS: 'console.set.completions', +  CONSOLE_SHOW_ERROR: 'console.show.error', +  CONSOLE_HIDE: 'console.hide', +  CONSOLE_COMPLETION_NEXT: 'console.completion.next', +  CONSOLE_COMPLETION_PREV: 'console.completion.prev',    // User input    INPUT_KEY_PRESS: 'input.key,press', | 
