nsh
nsh copied to clipboard
Function color check
Nsh already checks if aliases exist and highlights them with a green color accordingly. The same thing doesn't work for functions though.
alias l="ls -la"
works, while
l () {
ls -la
}
doesn't.