diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 19:08:51 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 19:58:36 +0900 |
commit | 7ac00fce6f6c431f96c531179c6af3796df7e07a (patch) | |
tree | a10db125bd25c1447bb08de2ef156c010243f019 /src/console/reducers | |
parent | b0d2b5328107a9a2018132938fb5a9efcd77fc50 (diff) |
Show info on yanked
Diffstat (limited to 'src/console/reducers')
-rw-r--r-- | src/console/reducers/index.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/console/reducers/index.js b/src/console/reducers/index.js index 78b73b0..d4affa7 100644 --- a/src/console/reducers/index.js +++ b/src/console/reducers/index.js @@ -57,6 +57,11 @@ export default function reducer(state = defaultState, action = {}) { mode: 'error', messageText: action.text, }); + case actions.CONSOLE_SHOW_INFO: + return Object.assign({}, state, { + mode: 'info', + messageText: action.text, + }); case actions.CONSOLE_HIDE_COMMAND: return Object.assign({}, state, { mode: state.mode === 'command' ? '' : state.mode, |