zippyboy
zippyboy

Reputation: 67

How to open goland from specific path?

This is actually a straightforward question, have been researching on how to use such command like code . for VSCode , but with GoLand in Windows. Any help please?

Upvotes: 3

Views: 1749

Answers (2)

hiru007
hiru007

Reputation: 133

For Mac, run this in the terminal

open -a "/Applications/Goland.app" --args .

Upvotes: 0

Brits
Brits

Reputation: 18280

GoLand works in a similar way to VSCode as covered in the docs:

goland64 .

However for this to work the folder with goland64.exe will need to be in your path. You can test this without adding the folder to your path by specifying the full path to the executable; on my PC this is:

"C:\Program Files\JetBrains\GoLand 2021.3\bin\goland64.exe" .

Upvotes: 4

Related Questions