Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Quick access to a table from IDEA

If you type a database table name in the "Search Everywhere" dialogue it will appear in the bottom of the list and I have to scroll to open the table. What is the trick to access a table quicker?

like image 309
Handsome Nerd Avatar asked Oct 29 '17 23:10

Handsome Nerd


People also ask

What is Ctrl Alt L in IntelliJ?

Sometimes code formatting can get out of sync, but there's an easy fix in IntelliJ IDEA. You can use ⌘⌥L (macOS), or Ctrl+Alt+L (Windows/Linux) to reformat a selection of code according to your reformat settings.

What does Ctrl d do in IntelliJ?

I use Ctrl+D to add to selection (discrete multiple select) the next occurrence of the string (or substring) highlighted.

How do I view tables in IntelliJ?

View table data Open the Database tool window (View | Tool Windows | Database). In the database tree, navigate to the table that you want to open. Double-click the table.

How do I use IntelliJ shortcuts?

Learn shortcuts as you workPress Ctrl+Shift+A and start typing to get a list of suggested actions. Then select the necessary action and press Enter to execute it.


1 Answers

Most probably you are searching for alt+f7 alias for find usages.

To quote:

Find the usages of (references to) the selected item (data source, table or column) in your source files and libraries.

More at the jetbrains help page.

First edit I have asked the requester to add information if the answer is not what he was searching. The question was not updated but I'll post some links.

  • Keyboard mapping on jetbrains products is no magic, you can find complete shortcut list for phpstorm here: By Keystroke or By category

If you can not find it here it is likely such shortcut does not exist.

  • If you want to create a custom shortcut you have to change your keyboard map:

    Configuring Keyboard Shortcuts

like image 104
tukan Avatar answered Oct 22 '22 00:10

tukan