Show info on yanked

This commit is contained in:
Shin'ya Ueoka 2017-10-08 19:08:51 +09:00
parent b0d2b53281
commit 7ac00fce6f
12 changed files with 84 additions and 31 deletions

View file

@ -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
};