Anton Prokofiev
Anton Prokofiev

Reputation: 957

Configure keys in erlang shell on linux

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

Answers (1)

legoscia
legoscia

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

Related Questions