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/actions/console.js | |
parent | b0d2b5328107a9a2018132938fb5a9efcd77fc50 (diff) |
Show info on yanked
Diffstat (limited to 'src/console/actions/console.js')
-rw-r--r-- | src/console/actions/console.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/console/actions/console.js b/src/console/actions/console.js index aacc21a..0d891bb 100644 --- a/src/console/actions/console.js +++ b/src/console/actions/console.js @@ -14,6 +14,13 @@ const showError = (text) => { }; }; +const showInfo = (text) => { + return { + type: actions.CONSOLE_SHOW_INFO, + text: text + }; +}; + const hideCommand = () => { return { type: actions.CONSOLE_HIDE_COMMAND, @@ -40,6 +47,6 @@ const completionPrev = () => { }; export { - showCommand, showError, hideCommand, + showCommand, showError, showInfo, hideCommand, setCompletions, completionNext, completionPrev }; |