EditInVsCodeDelphiPlugin
EditInVsCodeDelphiPlugin copied to clipboard
Adds a "Open in Visual Studio Code" item in the Delphi Tools menu (great if you have the Copilot extension for Visual Studio Code)
Fixes issue described in #5
I tried to run the Delphi plugin right after installing VSCode as well. As the PATH variable for 'code' command was not yet added, the plugin didn't work. After debugging...
The command line args did not work on my setup (code.exe not on PATH, reuse-window option). Here's my modification: ```diff --- a/DGVisualStudioCodeIntegration.pas +++ b/DGVisualStudioCodeIntegration.pas @@ -130,12 +131,11 @@ begin if...