mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
TW-1381
- TW-1381 blocking report exits with "Unknown error" and exit code 3.
This commit is contained in:
parent
77047cf07c
commit
5c6c14e21b
3 changed files with 10 additions and 2 deletions
|
@ -133,6 +133,7 @@
|
||||||
- TW-1366 In diagnostics it's called 'Cert', and in config it's called
|
- TW-1366 In diagnostics it's called 'Cert', and in config it's called
|
||||||
'certificate' (thanks to Jack).
|
'certificate' (thanks to Jack).
|
||||||
- TW-1373 taskrc.vim VIM syntax file updated (thanks to lolilolicon).
|
- TW-1373 taskrc.vim VIM syntax file updated (thanks to lolilolicon).
|
||||||
|
- TW-1381 blocking report exits with "Unknown error" and exit code 3.
|
||||||
- TW-1383 Segmentation fault running import-yaml.pl with included example
|
- TW-1383 Segmentation fault running import-yaml.pl with included example
|
||||||
(thanks to Markus Beppler).
|
(thanks to Markus Beppler).
|
||||||
- Removed deprecated 'echo.command' setting, in favor of the 'header' and
|
- Removed deprecated 'echo.command' setting, in favor of the 'header' and
|
||||||
|
|
|
@ -76,7 +76,7 @@ ViewTask::~ViewTask ()
|
||||||
// +--+--+-------+--+-------+--+-------+--+
|
// +--+--+-------+--+-------+--+-------+--+
|
||||||
// |ma|ex|cell |in|cell |in|cell |ex|
|
// |ma|ex|cell |in|cell |in|cell |ex|
|
||||||
// +--+--+-------+--+-------+--+-------+--+
|
// +--+--+-------+--+-------+--+-------+--+
|
||||||
//
|
//
|
||||||
// margin - indentation for the whole table
|
// margin - indentation for the whole table
|
||||||
// extrapadding - left and right padding for the whole table
|
// extrapadding - left and right padding for the whole table
|
||||||
// intrapadding - padding between columns
|
// intrapadding - padding between columns
|
||||||
|
|
|
@ -81,10 +81,17 @@ void ColumnParent::render (
|
||||||
// 34f00694 short
|
// 34f00694 short
|
||||||
if (_style == "default" ||
|
if (_style == "default" ||
|
||||||
_style == "long")
|
_style == "long")
|
||||||
|
{
|
||||||
lines.push_back (color.colorize (leftJustify (task.get (_name), width)));
|
lines.push_back (color.colorize (leftJustify (task.get (_name), width)));
|
||||||
|
}
|
||||||
|
|
||||||
else if (_style == "short")
|
else if (_style == "short")
|
||||||
lines.push_back (color.colorize (leftJustify (task.get (_name).substr (28), width)));
|
{
|
||||||
|
if (task.has (_name))
|
||||||
|
lines.push_back (color.colorize (leftJustify (task.get (_name).substr (28), width)));
|
||||||
|
else
|
||||||
|
lines.push_back (color.colorize (leftJustify ("", width)));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue