1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

Shell: Highlight commands with a hyperlink to open their help pages

This commit is contained in:
ForLoveOfCats 2022-04-20 15:36:00 -04:00 committed by Ali Mohammad Pur
parent 85152d2f7f
commit 99c0b895fe
4 changed files with 142 additions and 27 deletions

View file

@ -67,7 +67,7 @@ int Shell::builtin_alias(int argc, char const** argv)
}
} else {
m_aliases.set(parts[0], parts[1]);
add_entry_to_cache(parts[0]);
add_entry_to_cache({ RunnablePath::Kind::Alias, parts[0] });
}
}