Debugger: Add more watch-range aliases

This commit is contained in:
Vicki Pfau 2022-10-16 02:13:09 -07:00
parent 42f7876731
commit ca0baae821
1 changed files with 4 additions and 0 deletions

View File

@ -155,9 +155,13 @@ static struct CLIDebuggerCommandAlias _debuggerCommandAliases[] = {
{ "q", "quit" },
{ "w", "watch" },
{ "watchr", "watch-range" },
{ "wr", "watch-range" },
{ "watchr/c", "watch-range/c" },
{ "wr/c", "watch-range/c" },
{ "watchr/r", "watch-range/r" },
{ "wr/r", "watch-range/r" },
{ "watchr/w", "watch-range/w" },
{ "wr/w", "watch-range/w" },
{ ".", "source" },
{ 0, 0 }
};