Fast-Forward »: My Lazarus External Tools (and Delphi External tools)
Posted by jpluimers on 2020/03/17
For my link archive if I want to make Explorer (for Linux caja) or console shortcuts to source or target directories: [WayBack] Fast-Forward »: My Lazarus External Tools with these XML files from [WayBack] Lazarus External Tools · GitHub:
And the Delphi equivalent from 2004: [WayBack] Fast-Forward »: My Delphi Tools, which addes “Open Source in Notepad2” and “Start Resource Explorer”.
via: [WayBack] Ondrej Kelle – Google+
–jeroen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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, "$EdFile()""/> | |
<HideWindow Value="False"/> | |
</Tool1> | |
<Tool2> | |
<Title Value="Explore to Target Directory"/> | |
<Filename Value="explorer.exe"/> | |
<CmdLineParams Value="/e,/select, "$TargetFile()""/> | |
<HideWindow Value="False"/> | |
</Tool2> | |
<Tool3> | |
<Title Value="Console in Source Directory"/> | |
<Filename Value="cmd.exe"/> | |
<CmdLineParams Value="/k cd "$Path($EdFile())""/> | |
<ShowConsole Value="True"/> | |
<HideWindow Value="False"/> | |
</Tool3> | |
<Tool4> | |
<Title Value="Console in Target Directory"/> | |
<Filename Value="cmd.exe"/> | |
<CmdLineParams Value="/k cd "$Path($TargetFile())""/> | |
<ShowConsole Value="True"/> | |
<HideWindow Value="False"/> | |
</Tool4> | |
</CONFIG> |
Leave a Reply