I have this config on my .myclirc
table_format = psql
enable_pager = True
This the output is not what I expeceted, I tried to set pspg on the [client] section on the .my.cnf but mysqldump will complain about.
[client]
pager = pspg -X --quit-if-one-screen
This answer in github works great.
In my
.my.cnfI added thisThen use the
--default-group-suffixon mycli.In my
.bash_aliasI just added thisalias m='mycli --defaults-group-suffix="_visidata"'.This basically call the[client_visidata]contents while using the mycli client. While themysqldumpwont read it, so it wont rise any error.