this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix autocomplete on command aliases (#2538)

authored by

Alice and committed by
GitHub
9dd6cd8d 1e7a150c

+1 -1
+1 -1
src/studio/screens/console.c
··· 3357 3357 bool commandMatches = (strlen(Commands[i].name) == commandLen && 3358 3358 strncmp(Commands[i].name, input, commandLen) == 0) || 3359 3359 (Commands[i].alt && 3360 - strlen(Commands[i].name) == commandLen && 3360 + strlen(Commands[i].alt) == commandLen && 3361 3361 strncmp(Commands[i].alt, input, commandLen) == 0); 3362 3362 3363 3363 if (commandMatches)