If I define an alias: ```shell alias xxx='ls -la' ``` and then type `xxx`, it highlights it just fine. But if I define alias containing a function: ```shell alias xxx='f(){ ls -la; }; f' ``` and then type `xxx`, it doesn't highlight it as a known command.