mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug #1191
+ The 'execute' command should not be considered a 'write' command.
This commit is contained in:
parent
08b959aafc
commit
88968ac36c
3 changed files with 5 additions and 3 deletions
|
@ -93,6 +93,8 @@ Bugs
|
||||||
builds (thanks to Jakub Wilk).
|
builds (thanks to Jakub Wilk).
|
||||||
+ Fixed bug #1189, which caused wide Asian UTF8 characters to be measured as
|
+ Fixed bug #1189, which caused wide Asian UTF8 characters to be measured as
|
||||||
narrow characters (thanks to Roy Zuo).
|
narrow characters (thanks to Roy Zuo).
|
||||||
|
+ Fixed bug #1191, which kept file locks active for longer than necessary,
|
||||||
|
and caused the 'execute' command to be considered a 'write' command.
|
||||||
+ Improved hyphenation by splitting on commas (even if no whitespace after).
|
+ Improved hyphenation by splitting on commas (even if no whitespace after).
|
||||||
Leads to better output of, for example, 'task show', where comma-separated
|
Leads to better output of, for example, 'task show', where comma-separated
|
||||||
lists are common.
|
lists are common.
|
||||||
|
|
|
@ -40,8 +40,8 @@ CmdExec::CmdExec ()
|
||||||
_keyword = "execute";
|
_keyword = "execute";
|
||||||
_usage = "task execute <external command>";
|
_usage = "task execute <external command>";
|
||||||
_description = STRING_CMD_EXEC_USAGE;
|
_description = STRING_CMD_EXEC_USAGE;
|
||||||
_read_only = false;
|
_read_only = true;
|
||||||
_displays_id = true;
|
_displays_id = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue