mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug
- Colons are evil, fixed ZSH completion commands.
This commit is contained in:
parent
26dbd8e790
commit
55813b6a09
3 changed files with 15 additions and 2 deletions
10
src/text.cpp
10
src/text.cpp
|
@ -527,6 +527,16 @@ const std::string str_replace (
|
|||
return str;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
const std::string str_replace (
|
||||
const std::string& str,
|
||||
const std::string& search,
|
||||
const std::string& replacement)
|
||||
{
|
||||
std::string modified = str;
|
||||
return str_replace (modified, search, replacement);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
const char* optionalBlankLine ()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue