mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
CLI
- Implemented ::isRCOverride.
This commit is contained in:
parent
0b073bc8d1
commit
91f4eade50
2 changed files with 10 additions and 0 deletions
|
@ -1691,6 +1691,15 @@ void CLI::decomposeModSubstitutions ()
|
|||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
bool CLI::isRCOverride (const std::string& raw) const
|
||||
{
|
||||
if (raw.length () > 3 && raw.substr (0, 3) == "rc:")
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
bool CLI::isUUID (const std::string& raw) const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue