Reputation: 3578
I feel totally uncomfortable while typing without vim keybinding. Is it is possible to get vim keybinding in MySQL Workbench query editor?
Upvotes: 4
Views: 1858
Reputation: 41
IntelliJ's DataGrip seems to be the most feasible solution at this stage.
You'll need to install IdeaVim plugin to make it work. Seems to work but IntelliJ is extremely slow.
2022 Update:
I'm using VIM at this stage, with the plugins DadBod by TPope and DadBod-UI...Not until Azure Data Studio provides MySQL support, this is working perfectly for me.
2023 Update:
Use Azure Data Studio. It supports VIM keybindings now.
Upvotes: 1
Reputation: 3578
I found out there is no easy way to integrate vim with MySQL Workbench. But I found two better ways to use vim for writing MySQL query without any paid software like DataGrip or Jetbrain products.
\e
in command in mysql/mycli prompt to open your preferred editor. save and close the file to run the query you have written in the editor.Upvotes: 2