Skip to content

Instantly share code, notes, and snippets.

@tondrej
Created October 20, 2018 09:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tondrej/da89b7b5564bdbefc61a90d24c715d71 to your computer and use it in GitHub Desktop.
Save tondrej/da89b7b5564bdbefc61a90d24c715d71 to your computer and use it in GitHub Desktop.
Lazarus External Tools
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG Version="3" Count="4">
<Tool1>
<Title Value="Explore to Source Directory"/>
<Filename Value="caja"/>
<CmdLineParams Value="$Path($EdFile())"/>
<HideWindow Value="False"/>
</Tool1>
<Tool2>
<Title Value="Explore to Target Directory"/>
<Filename Value="caja"/>
<CmdLineParams Value="$Path($TargetFile())"/>
<HideWindow Value="False"/>
</Tool2>
<Tool3>
<Title Value="Console in Source Directory"/>
<Filename Value="mate-terminal"/>
<CmdLineParams Value="--working-directory=$Path($EdFile())"/>
<ShowConsole Value="True"/>
<HideWindow Value="False"/>
</Tool3>
<Tool4>
<Title Value="Console in Target Directory"/>
<Filename Value="mate-terminal"/>
<CmdLineParams Value="--working-directory=$Path($TargetFile())"/>
<ShowConsole Value="True"/>
<HideWindow Value="False"/>
</Tool4>
</CONFIG>
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG Version="3" Count="4">
<Tool1>
<Title Value="Explore to Source Directory"/>
<Filename Value="explorer.exe"/>
<CmdLineParams Value="/e,/select, &quot;$EdFile()&quot;"/>
<HideWindow Value="False"/>
</Tool1>
<Tool2>
<Title Value="Explore to Target Directory"/>
<Filename Value="explorer.exe"/>
<CmdLineParams Value="/e,/select, &quot;$TargetFile()&quot;"/>
<HideWindow Value="False"/>
</Tool2>
<Tool3>
<Title Value="Console in Source Directory"/>
<Filename Value="cmd.exe"/>
<CmdLineParams Value="/k cd &quot;$Path($EdFile())&quot;"/>
<ShowConsole Value="True"/>
<HideWindow Value="False"/>
</Tool3>
<Tool4>
<Title Value="Console in Target Directory"/>
<Filename Value="cmd.exe"/>
<CmdLineParams Value="/k cd &quot;$Path($TargetFile())&quot;"/>
<ShowConsole Value="True"/>
<HideWindow Value="False"/>
</Tool4>
</CONFIG>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment