Script Editor: SVN Plugins – Arma Reforger

From Bohemia Interactive Community
Jump to navigation Jump to search
(Add Resource Manager)
(Remove warning about $line not working)
 
Line 31: Line 31:
== Commands ==
== Commands ==


* the {{hl|$path}} parameter is replaced by the absolute file path between double quotes ({{hl|"}}), e.g {{hl|"C:\Users\John Bob\MyFile.c"}}.
Commands can be anything and have two possible parameters:
* {{Feature|important|As of {{armaR}} 1.0.0, the {{hl|$line}} parameter is '''''not''''' replaced by the line number unlike what the tool says.}}
* {{hl|$path}}: replaced by the absolute file path between double quotes ({{hl|"}}), e.g {{hl|"C:\Users\John Bob\MyFile.c"}}.
* {{hl|$line}}: replaced by the current cursor position's line number.


{| class="wikitable"
{| class="wikitable"

Latest revision as of 12:23, 16 September 2024

SVN Plugins

This plugin is available in:

SVN Blame

Alt + ⇧ Shift + B
Script Editor only

SVN Diff

Alt + ⇧ Shift + I
Script Editor only

SVN Log

Alt + ⇧ Shift + L

CVS-related shortcut commands

File: SCR_SVNPlugin.c

SVN plugins are keyboard shortcuts to SVN commands - more precisely TortoiseSVN commands by default. They are defined in SCR_SVNPlugin.c.

The plugins are named SVN but can absolutely be used with another VCS software like Git (e.g Git Extensions), provided commands are replaced in the plugins's options.
They may be renamed to VCS plugins in the future.


Commands

Commands can be anything and have two possible parameters:

  • $path: replaced by the absolute file path between double quotes ("), e.g "C:\Users\John Bob\MyFile.c".
  • $line: replaced by the current cursor position's line number.
Name Shortcut Description Command
SVN Blame Alt + ⇧ Shift + B List the last author of each line, to find the culprit
TortoiseProc /command:blame /path:$path /startrev:1 /endrev:-1 /ignoreeol /ignoreallspaces /line:$line
gitex blame $path
SVN Diff Alt + ⇧ Shift + I List the changes between the repository and the local file
TortoiseProc /command:diff /path:$path
gitex difftool $path
SVN Log Alt + ⇧ Shift + L Show the file's changes commit history
TortoiseProc /command:log /path:$path
gitex filehistory $path


See Also