LoginSignup
13
13

More than 5 years have passed since last update.

MySQL 5.6 でインクリメンタル履歴検索、タブ補完

Last updated at Posted at 2014-07-18

概要

MySQL 5.6 で C-r してもインクリメンタル履歴検索ができなくて困った。
調べたところ、MySQL 5.6 から libedit が使われていて、デフォルトでは C-r がインクリメンタル履歴検索に割り当てられてない。

追記 タブ補完もできないことに気づいたので、同じく ~/.editrc で解決。

解決策

~/.editrc
mysql:bind -e
mysql:bind "^r" em-inc-search-prev # enable incremental backward search
mysql:bind "\\t" rl_complete       # enable completion

rl_completeman editrc しても載ってない。。。
参考記事の2つ目の Gist で知った。

参考記事

mysqlでいちいちshow databasesとか打つのがめんどい→readlineのマクロで解決
jderrett / VI and tab completion irb bindings OSX

13
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
13