mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
CLI2: ::aliasExpansion now expands in both _args and _original_args
This commit is contained in:
parent
bb283de1dd
commit
9ea2702696
1 changed files with 18 additions and 2 deletions
20
src/CLI2.cpp
20
src/CLI2.cpp
|
@ -900,8 +900,7 @@ void CLI2::aliasExpansion ()
|
||||||
raw = i.attribute ("raw");
|
raw = i.attribute ("raw");
|
||||||
if (_aliases.find (raw) != _aliases.end ())
|
if (_aliases.find (raw) != _aliases.end ())
|
||||||
{
|
{
|
||||||
auto lexed = Lexer::split (_aliases[raw]);
|
for (auto& l : Lexer::split (_aliases[raw]))
|
||||||
for (auto& l : lexed)
|
|
||||||
{
|
{
|
||||||
A2 a (l, Lexer::Type::word);
|
A2 a (l, Lexer::Type::word);
|
||||||
a.tag ("ALIAS");
|
a.tag ("ALIAS");
|
||||||
|
@ -917,6 +916,23 @@ void CLI2::aliasExpansion ()
|
||||||
}
|
}
|
||||||
|
|
||||||
_args = reconstructed;
|
_args = reconstructed;
|
||||||
|
|
||||||
|
std::vector <std::string> reconstructedOriginals;
|
||||||
|
for (auto& i : _original_args)
|
||||||
|
{
|
||||||
|
if (_aliases.find (i) != _aliases.end ())
|
||||||
|
{
|
||||||
|
for (auto& l : Lexer::split (_aliases[i]))
|
||||||
|
reconstructedOriginals.push_back (l);
|
||||||
|
|
||||||
|
action = true;
|
||||||
|
changes = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
reconstructedOriginals.push_back (i);
|
||||||
|
}
|
||||||
|
|
||||||
|
_original_args = reconstructedOriginals;
|
||||||
}
|
}
|
||||||
while (action && counter++ < safetyValveDefault);
|
while (action && counter++ < safetyValveDefault);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue