Bash default command line editing mode

1

What is the default command line editing mode for bash?

I have been playing around with the command line editing modes in bash.The problem is that i have added lines in bashrc to toggle the vi and emacs mode as per this link. Toggle bash editing mode

set -o vi
bind '"\ee": emacs-editing-mode'
set -o emacs
bind '"\ee": vi-editing-mode'

According to the order, the mode set in my bash shell would be emacs mode. And it is. It works fine, except that now, my home,end keys translate to tilde symbols. Any help?

woodstok

Posted 2012-10-16T15:53:58.650

Reputation: 761

Answers

1

The default mode is Emacs, but after your snippet, it stays in Vi mode. Append another set -o emacs to change it.

Regardless of that, my Home and End keys still work. The tildes you get appear to have a different cause.

Martin Vidner

Posted 2012-10-16T15:53:58.650

Reputation: 264

I am sorry, i put the order wrong in the question.Edited it now. – woodstok – 2012-10-19T06:22:59.200