JetBrains Rider 2023.3 Help

Remote SSH External Tools

This page describes the settings that you can configure for remote external tools. For more information about adding and using external tools, refer to External tools.

The Remote SSH External Tools settings page

Use the toolbar buttons to manage the list of available external tools. Clear checkboxes for tools and groups that you want to keep but not have available in menus.

the Add button Add Alt+Insert

Add a new external tool.

the Remove button Remove Ctrl+Y

Remove the selected tool or group.

the Edit button Edit Enter

Edit the selected tool.

Up Alt+Up

Move the selected tool up in the list.

Down Alt+Up

Move the selected tool down in the list.

Copy

Move the selected tool down in the list.

When you create, edit, or copy an external tool, you need to provide the tool's settings.

Creating, editing, or copying a remote external tool
Name

The name of the tool that will be used as the action for running the tool in the JetBrains Rider interface.

Group

The name of the group to which the tool belongs. You can select an existing group or type the name of a new group. For example, if you have many external tools configured, you may want to separate them into groups, such as Linters, Preprocessors, Postprocessors, and so on.

Description

A meaningful description of the tool.

Tool Settings

Program

The absolute path to the executable file (script, utility, application, and so on).

Arguments

The arguments passed to the executable file, as you would specify them on the command line.

  • Use spaces to separate individual arguments.

  • Use double quotes for arguments and paths that contain spaces.

  • Use a backslash to escape double quotes that are part of the argument or path.

For example:

-Dmy.prop=\"quoted_value\" "second arg" third" "arg
Working directory

The absolute path to the working directory from which the tool should be executed.

Connection settings

Specify the connection settings for the remote server where you want to run the tool via SSH.

Current Vagrant

Run the tool on the currently running Vagrant virtual machine. For more information, refer to Vagrant: Working with Reproducible Development Environments.

SSH Configuration

Run the tool on a server accessible via one of the configured SSH configurations. Alternatively, you can choose to Select SSH configuration on every run.

Advanced Options

Synchronize files after execution

Automatically load the changes to your project files made by the external tool. If the tool does not modify any files in your project, you can disable this option.

Open console for tool output

Open a console with the tool's standard output and error streams.

Make console active on message in stdout

Activate the console when the tool uses the standard output stream.

Make console active on message in stderr

Activate the console when the tool uses the standard error stream.

Output filters

Specify filters to turn absolute file paths, line and column numbers in the output messages into hyperlinks. This will allow you to jump from the console output directly to the relevant location in the file. Each line is a regular expression that defines a separate filter.

For example, let's say some tool produces lines of output similar to the following:

/path/to/file.conf:42:10 WARNING: Some message

Then you can define a filter like this one:

$FILE_PATH$:$LINE$:$COLUMN$.*
Last modified: 18 March 2024