MacOS - open a folder

Answered

HI, i want to open a Folder directly as an IntelliJ Project on MacOS. How does it works?

0
3 comments

We have a related ticket, please upvote https://youtrack.jetbrains.com/issue/IDEA-199781

0

on your Mac create an new quick action with automator and use the following code line

 

open -na "IntelliJ IDEA.app" --args "$@"

this will give you the option to open a file or folder 

0

For community edition:

open -na "IntelliJ IDEA CE.app" --args "$@"
0

Please sign in to leave a comment.