I can type
alias
and get a list of defined aliases in zsh
How can I get a list of function names defined in zsh?
When I type "functions", my shell window hangs after displaying lots of functions, always ending at
__rvm_checksum_none () {
[[ -z "${_checksum_md5:-}" && -z "${_checksum_sha512:-}" ]]
}
__rvm_checksum_read () {
What's super annoying is that this won't quit with ctrl-c (using item2 AND terminal).
iterm2:

Picture of terminal having the same issue:

functionsbuiltin. Do you get an output if you undefine the problematic(?) function first:unfunction __rvm_checksum_read? – mpy Dec 04 '13 at 19:13functions > /tmp/foo. If it's a zsh problem this should've issue, too. When it's a terminal problem it shouldn't. If your problem may interfere with everyday's usage -- I could not say, sorry. – mpy Dec 05 '13 at 23:16__rvm_checksum_readfunction or does this hang the shell, too? (3) Can you usewhich __rvm_checksum_readto display the function successful? – mpy Dec 06 '13 at 11:53}
– justingordon Dec 06 '13 at 21:32