|
Astro inputrc/esc-k doesn't work
When my account was setup on Astro the edit-mode (set -o vi) did not work at all. I emailed support and received a reply suggesting I read the man pages and that it worked just fine for him.
Looking at the server settings my own dang self since the support tech wouldn't do it I discovered the following:
1. The environmental variable INPUTRC is set to /etc/inputrc so the home directory copy is not read.
2. vi-movement-mode is not bound to any key. Therefore: no vi movement mode.
My solution was as follows:
Add the following two lines to .bash_profile
INPUTRC=~/.inputrc
export INPUTRC
I changed my .inputrc to the following
$include /etc/inputrc
"\C-[": vi-movement-mode
Changing the first line to
. /etc/inputrc
is not recommended as very bad things would occur. :-)
[This message has been edited by wysiwyg (edited 04-16-00@11:02 pm)]
|