Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Speed Up AutoComplete Popup in MySQL Workbench

When typing a query into MySQL Workbench, the autocomplete suggestion popup is so slow. After typing a couple letters of a column or table name, I have to pause for about a second or more for the suggestion box to popup.

Is there anyway to make the suggestion box appear immediately as I'm typing rather than wait for a pause?

like image 583
Andrew Avatar asked Sep 16 '25 08:09

Andrew


1 Answers

This is on purpose to avoid that the popup comes up constantly while you are typing (the delay is 500ms atm, hard coded). However, by using the hot key you can always trigger code completion immediately (on OSX this is command + esc, otherwise control + space bar).

like image 158
Mike Lischke Avatar answered Sep 19 '25 03:09

Mike Lischke