fix(me): register --full flag in autocorrect registry

The --full flag was being incorrectly corrected to --all because it
wasn't registered in COMMAND_FLAGS for the me command.
This commit is contained in:
teernisse
2026-03-04 15:45:31 -05:00
parent bc72b619e7
commit dd4f5b626b

View File

@@ -299,6 +299,7 @@ const COMMAND_FLAGS: &[(&str, &[&str])] = &[
"--all", "--all",
"--user", "--user",
"--fields", "--fields",
"--full",
"--reset-cursor", "--reset-cursor",
], ],
), ),