Home > other >  Is there a way to setup a shortcut to "re-run" the Delphi LSP instances?
Is there a way to setup a shortcut to "re-run" the Delphi LSP instances?

Time:10-25

As long as the Delphi LSP implementation has its flaws, it would come in handy if we could restart the LSP processes with an easy to reach shortcut. How can such a shortcut be added?

CodePudding user response:

Under Tools - Configure Tools add a new entry named Kill LSP with the following settings:

Program: taskkill
Parameters: /IM DelphiLSP.exe /F

This will add a new menu entry Kill LSP under the Tools menu.

  • Related