mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-06-26 10:54:28 +02:00
Remove hyphen from list of items triggering quoting
Closes #576 Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
parent
f0b89239a7
commit
159b8c642a
2 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
|||
- #494 Expand annotations in summary
|
||||
(thanks to catexis)
|
||||
- #566 Set table width dynamically to terminal width
|
||||
- #576 Fix quoting of tags in DOM output
|
||||
- Add ':today' hint
|
||||
- Refactor holidays/refresh script
|
||||
- Update task-timewarrior-hook script to 87a3426d8153f92aaee2edf36b2de62e48c4de0e
|
||||
|
|
|
@ -55,7 +55,7 @@ std::string quoteIfNeeded (const std::string& input)
|
|||
{
|
||||
auto quote = input.find ('"');
|
||||
auto space = input.find (' ');
|
||||
auto op = input.find_first_of ("+-/()<^!=~_%");
|
||||
auto op = input.find_first_of ("+/()<^!=~_%");
|
||||
|
||||
if (quote == std::string::npos &&
|
||||
space == std::string::npos &&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue