Home > Blockchain >  How to open goland from specific path?
How to open goland from specific path?

Time:02-11

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?

CodePudding user response:

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" .
  • Related