When using the MySQL command line interface, is there any way to get it to let you use vi command editing keys instead of emacs?
Asked
Active
Viewed 4,953 times
11
Luis Alvarado
- 216,643
SpashHit
- 1,456
1 Answers
14
The MySQL command line interface uses readline to edit a command line.
Create a file ~/.inputrc with the following content to use vi mode:
$if mysql
set editing-mode vi
$endif
Of course, if you want to use vi mode in all applications (including e.g. bash) that use readline, you can leave out the $if & $endif ... lines...