diff --git a/src/Config.cpp b/src/Config.cpp index 53836392a..c3e0d41d7 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -45,7 +45,8 @@ // 2) It is parsed and used as default values for all Config.get calls. std::string Config::defaults = "# Task program configuration file.\n" - "# For more documentation, see http://taskwarrior.org or try 'man task' and 'man taskrc'\n" + "# For more documentation, see http://taskwarrior.org or try 'man task', 'man task-faq',\n" + "# 'man task-tutorial', 'man task-color' or 'man taskrc'\n" "\n" "# Files\n" "data.location=~/.task\n" diff --git a/src/command.cpp b/src/command.cpp index 851bec072..63b236e21 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -474,7 +474,8 @@ int handleVersion (std::string &outs) link.setColumnJustification (0, Table::left); link.addCell (link.addRow (), 0, "Documentation for task can be found using 'man task', 'man taskrc', " - "'man task-tutorial', 'man task-faq' or at http://taskwarrior.org"); + "'man task-tutorial', 'man task-color', 'man task-faq' or at " + "http://taskwarrior.org"); Color bold ("bold"); diff --git a/src/report.cpp b/src/report.cpp index 195f86d8d..fe3f4795a 100644 --- a/src/report.cpp +++ b/src/report.cpp @@ -213,7 +213,8 @@ int shortUsage (std::string &outs) out << table.render () << std::endl << "Documentation for task can be found using 'man task', 'man taskrc', " - << "'man task-tutorial', 'man task-faq' or at http://taskwarrior.org" + << "'man task-tutorial', 'man task-color', 'man task-faq' or at " + << "http://taskwarrior.org" << std::endl << std::endl;