We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
If I define an alias:
alias xxx='ls -la'
and then type xxx, it highlights it just fine. But if I define alias containing a function:
xxx
alias xxx='f(){ ls -la; }; f'
and then type xxx, it doesn't highlight it as a known command.
Activity