|
|
|
|
|
by qworty
4614 days ago
|
|
Actually if you really like the vim keybindings you can set your bash to vi mode. That way with escape shift+i you get to the start of the line. Or if you like to keep the emacs keybindings in your terminal (yep emacs). you could always do ctrl+x e this opens op your $EDITOR with the current text of the command line. Exit the editor and the text will be piped to bash. (Maybe not the correct terminology, but it gets executed by bash) add this to your ~/.bashrc
set -o vi |
|
I love CTRL-X CTRL-E!
Thanks for your feedback!