Reputation: 28804
I have to open each intellij instance for each application. And switch between these project are not so efficient. (there's no dependency between these project, so I can not add them into one project). I just wonder is there efficient way to switch between different projects in intellij.
Upvotes: 21
Views: 22892
Reputation: 2757
The question is what do you want it to be? Go to settings, select keymap, and search for project.
There you will find the next and previous projects.. you can apply them or change them if you find them convenient. I chose (option + right arrow) for next and (option + left arrow) for previous.
Upvotes: 0
Reputation: 32113
If you're a MacOS user: As well as the Command+` and Command+Shift+` keyboard shortcuts which IntelliJ offers to toggle between IntelliJ windows, the OS-level Control+↓ keyboard shortcut is an excellent way to see and navigate between windows of the current app. The screenshot below shows the view which it offers. If you turn on App Exposé in your Trackpad preferences, you can also get to this view by swiping down with three fingers.
Upvotes: 4
Reputation: 3530
OSX: Press CMD + `
Windows/Linux: Press cntr + `
https://www.jetbrains.com/help/idea/creating-and-managing-projects.html#switch-projects
Upvotes: 18
Reputation: 4769
if you have several opened projects: https://www.jetbrains.com/help/idea/opening-multiple-projects.html
you can use:
Next Project Window: Cntrl + Alt + {
or
Previous Project Window: Cntrl + Alt + }
Edit
jebrains update their Switching Between Open Projects:
https://www.jetbrains.com/help/pycharm/switching-between-projects.html
Next Project Window: Cntrl + Alt + ]
or
Previous Project Window: Cntrl + Alt + [
Upvotes: 10
Reputation: 51
To switch between open projects, you can use the following commands of the Window menu:
Window | Next Project Window Ctrl+Alt+] Window | Previous Project Window Ctrl+Alt+[
Upvotes: 0
Reputation: 32763
Set up a keymap shortcut to "Manage Projects...".
This brings up a window that you can type into to quickly search recent projects. It includes currently open projects as well as previously closed projects.
Upvotes: 10
Reputation: 2532
Try this https://github.com/krasa/FrameSwitcher.
Switching intelliJ windows by searching project name.
Upvotes: 4
Reputation: 157
Use search everywhere command (shift + shift
) and type Open Recent
- you will be able to switch to one of your recent projects.
You could also configure any shortcut you want for this action.
To create shortcut, go to Preferences->Keymap
and find Main menu->File->Open Recent
.
Upvotes: 4