Hi all,
I am trying to tweak my ksh , i am running V: Version M-11/16/88i
I have my Backspace and up/down arrows working using the following code in my ~/.profile file.
set -o emacs
alias __A=$(print '\020' )
alias __B=$(print '\016' )
alias __C=$(print '\006' )
alias __D=$(print '\002' )
Question: Been searching around with no luck, anyone know how to map tab-completion, I know it works by pressing ESC ESC. Is there anyway to map the ESC ESC to the TAB Key??? Trying alias, key-binding, not sure what I'm doing
Thanks in advance!