How can I print my current configuration including defaults and key bindings?
This would allow me for example, to find what action is bound to say ^P
in emacs mode and find binding in vi
mode or set if it is not there instead of browsing manuals.
typeset -p +H -m '*'
, the output may break your terminal, if not redirected, as there are a few variables containing escape sequences, for exampleterminfo
. – Adaephon Feb 28 '14 at 06:08