mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Bug Fix, Tweaks
- .taskrc debug= now defaults to 'off', which will reduce clutter and won't surprise beta testers. - interactive.cpp did not compile when ncurses was not detected by autoconf. That code branch obviously never got executed. - The interactive shell now instructs the user to type 'quit' to leave the shell.
This commit is contained in:
parent
62449d8b3e
commit
c6a56d444e
3 changed files with 9 additions and 7 deletions
|
@ -147,7 +147,7 @@ int Context::run ()
|
|||
}
|
||||
|
||||
// Dump all debug messages.
|
||||
if (config.get ("debug", true))
|
||||
if (config.get (std::string ("debug"), false))
|
||||
foreach (d, debugMessages)
|
||||
std::cout << colorizeDebug (*d) << std::endl;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue