ZSH shell
Hotkeys:
ctrl + r: open history with current textctrl + e: open current text in vimctrl + space: accept auto-suggestions
Plugin installation: To do...
zsh functions: To do...
Print out the code behind a zsh function
(to remind myself of what the function does). Unfortunately comments are not visible.
whence -f foo
type -f foo
which fooWhich will print out:
foo () {
echo hello
}Docs:
man zshbuiltins