From 46cd5982993e990716c545c3b1c40033c58e3741 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 2 Sep 2016 18:12:02 -0400 Subject: [PATCH] main: Removed use of string defines --- src/main.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 83a3ccf..5af3a67 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -30,7 +30,6 @@ #include #include #include -#include #include #ifdef HAVE_READLINE @@ -56,7 +55,13 @@ static void welcome () std::cout << PACKAGE_STRING << "\n" << "\n" - << STRING_COMMAND_USAGE + << " Commands:\n" + << " tasksh> review [N] Task review session, with optional cutoff after N tasks\n" + << " tasksh> list Or any other Taskwarrior command\n" + << " tasksh> diagnostics Tasksh diagnostics\n" + << " tasksh> help Tasksh help\n" + << " tasksh> exec ls -al Any shell command. May also use '!ls -al'\n" + << " tasksh> quit End of session. May also use 'exit'\n" << "\n"; }