nsh icon indicating copy to clipboard operation
nsh copied to clipboard

Function color check

Open ghost opened this issue 2 years ago • 0 comments

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.

ghost avatar Mar 27 '22 09:03 ghost