summaryrefslogtreecommitdiff
path: root/src/client.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2016-10-29 11:25:58 +0100
committerMaxime Coste <frrrwww@gmail.com>2016-10-29 11:25:58 +0100
commita7cac87753d5da2f06545c69911f8b9f6941652f (patch)
treeb4f462b278e45b377b84960e2af4285cafcb27a3 /src/client.hh
parent965cd8e0c32310dbcc267359b3e161148f10407e (diff)
Display a status line message when Kakoune is waiting on a shell to complete
If a shell commands takes more than 1s to execute, a message will appear on the status line notifying the user, along with the time Kakoune has been waiting for.
Diffstat (limited to 'src/client.hh')
-rw-r--r--src/client.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.hh b/src/client.hh
index 1eb845b1..c4633466 100644
--- a/src/client.hh
+++ b/src/client.hh
@@ -41,7 +41,7 @@ public:
void info_show(String title, String content, BufferCoord anchor, InfoStyle style);
void info_hide();
- void print_status(DisplayLine status_line);
+ void print_status(DisplayLine status_line, bool immediate = false);
DisplayCoord dimensions() const { return m_ui->dimensions(); }