Open illwieckz opened 3 years ago
Xonotic has a nice “apropos” command, if you type in console:
apropos something
It would print any cvar or command that has something in their name or description.
something
Currently in Unvanquished/Daemon we have to do something like that (with a lot of noise):
listCmds listCvars grep something
Some of our list* commands, like listMaps already allow this with listMaps something, so it just needs to be ported to other commands as well.
list*
listMaps
listMaps something
listCvars also works with * and probably other stuff like ?.
listCvars
*
?
Xonotic has a nice “apropos” command, if you type in console:
It would print any cvar or command that has
something
in their name or description.Currently in Unvanquished/Daemon we have to do something like that (with a lot of noise):