Reputation: 957
All! Is it possible to configure Home,End, Del key in Erlang shell under Linux.
At the moment when I press Home, it generate 'H' and when End - 'F'...
Upvotes: 8
Views: 835
Reputation: 41618
One way to do it is to start the Erlang shell with rlwrap -a erl
. rlwrap
is a utility that puts the readline
library between the user and the underlying program, giving features such as familiar key bindings, history search, etc.
Upvotes: 12