asad.awadia
12/19/2020, 4:10 AMcode .
In shell which opens VSCode in the current directory but for intellij? Like intellij .
That launches intellij for the current dir - create or open if not exists the projectAnimesh Sahu
12/19/2020, 4:54 AMidea .
?Animesh Sahu
12/19/2020, 4:55 AMchristophsturm
12/19/2020, 11:35 AMVampire
12/19/2020, 1:09 PMRajkumar Singh
12/19/2020, 9:09 PMidea.cmd
file and copy the following content and save it to a location that can be found on your system/user path:
@echo off
set waitarg=
set ideargs=
:next
set "passwait="
if "%~1"=="--wait" set passwait=1
if "%~1"=="-w" set passwait=1
if defined passwait (set waitarg=/wait)
if not "%~1"=="" (
if defined passwait (set "ideargs=%ideargs%--wait ") else (set "ideargs=%ideargs%%1 ")
shift
goto next
)
start "" %waitarg% %LOCALAPPDATA%\JetBrains\Toolbox\apps\IDEA-U\ch-0\203.6682.78\bin\idea64.exe %ideargs%
Vampire
12/19/2020, 10:48 PMidea
or idea64
directly?asad.awadia
12/19/2020, 10:49 PMVampire
12/19/2020, 10:50 PMasad.awadia
12/19/2020, 10:50 PMVampire
12/19/2020, 10:51 PMbin
folder of the folder where intellij is installed.
For me that is C:\Program Files\JetBrains\IntelliJ IDEA 2020.1\bin
Vampire
12/19/2020, 10:52 PMAnimesh Sahu
12/20/2020, 6:24 AMAnimesh Sahu
12/20/2020, 6:25 AMAnimesh Sahu
12/20/2020, 6:29 AMC:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2020.2.3\bin
to the PATH.