2018-02-14 01:51:39 +00:00
|
|
|
# "Open External Editor" integration
|
2017-08-08 11:00:12 +00:00
|
|
|
|
|
|
|
GitHub Desktop supports the user choosing an external program to open their
|
2018-06-17 16:22:11 +00:00
|
|
|
local repositories, and this is available from the top-level **Repository** menu
|
2018-02-08 03:12:49 +00:00
|
|
|
or when right-clicking on a repository in the sidebar.
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2017-10-13 05:42:14 +00:00
|
|
|
### My favourite editor XYZ isn't supported!
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2017-10-13 04:49:58 +00:00
|
|
|
This is the checklist of things that it needs to support:
|
|
|
|
|
2017-10-13 05:42:14 +00:00
|
|
|
- the editor supports opening a directory, not just a file
|
|
|
|
- the editor is installed by the user, so there is a reliable way to find it
|
|
|
|
on the user's machine
|
|
|
|
- it comes with a command-line interface that can be launched by Desktop
|
2017-10-13 04:49:58 +00:00
|
|
|
|
2017-10-24 22:53:05 +00:00
|
|
|
If you think your editor satisfies all these please read on to understand how
|
2017-10-13 05:42:14 +00:00
|
|
|
Desktop integrates with each OS, and if you're still keen to integrate this
|
|
|
|
please fork and contribute a pull request for the team to review.
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
## Windows
|
|
|
|
|
|
|
|
The source for the editor integration on Windows is found in
|
2018-12-27 17:48:46 +00:00
|
|
|
[`app/src/lib/editors/win32.ts`](https://github.com/desktop/desktop/blob/development/app/src/lib/editors/win32.ts).
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
These editors are currently supported:
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2019-07-24 14:08:43 +00:00
|
|
|
- [Atom](https://atom.io/) - stable, Beta and Nightly
|
2021-01-18 17:17:39 +00:00
|
|
|
- [Visual Studio Code](https://code.visualstudio.com/) - both stable and Insiders channel
|
2020-03-08 23:23:58 +00:00
|
|
|
- [Visual Studio Codium](https://vscodium.com/)
|
2017-08-08 11:00:12 +00:00
|
|
|
- [Sublime Text](https://www.sublimetext.com/)
|
2018-02-08 03:12:49 +00:00
|
|
|
- [ColdFusion Builder](https://www.adobe.com/products/coldfusion-builder.html)
|
2018-09-19 12:39:20 +00:00
|
|
|
- [Typora](https://typora.io/)
|
2018-11-01 16:04:26 +00:00
|
|
|
- [SlickEdit](https://www.slickedit.com)
|
2022-03-24 10:44:22 +00:00
|
|
|
- [JetBrains IntelliJ Idea](https://www.jetbrains.com/idea/)
|
2018-11-22 22:36:16 +00:00
|
|
|
- [JetBrains WebStorm](https://www.jetbrains.com/webstorm/)
|
2020-03-08 23:23:58 +00:00
|
|
|
- [JetBrains Phpstorm](https://www.jetbrains.com/phpstorm/)
|
2020-03-28 01:32:23 +00:00
|
|
|
- [JetBrains Rider](https://www.jetbrains.com/rider/)
|
2022-01-26 14:04:04 +00:00
|
|
|
- [JetBrains CLion](https://www.jetbrains.com/clion/)
|
2022-01-26 14:06:03 +00:00
|
|
|
- [JetBrains PyCharm](https://www.jetbrains.com/pycharm/)
|
2022-03-24 10:44:22 +00:00
|
|
|
- [JetBrains RubyMine](https://www.jetbrains.com/rubymine/)
|
|
|
|
- [JetBrains GoLand](https://www.jetbrains.com/go/)
|
|
|
|
- [Android Studio](https://developer.android.com/studio)
|
|
|
|
- [Brackets](http://brackets.io/)
|
2020-03-09 01:33:33 +00:00
|
|
|
- [Notepad++](https://notepad-plus-plus.org/)
|
2021-03-16 10:47:31 +00:00
|
|
|
- [RStudio](https://rstudio.com/)
|
2022-05-23 17:41:34 +00:00
|
|
|
- [Aptana Studio](http://www.aptana.com/)
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
These are defined in a list at the top of the file:
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
```ts
|
2021-01-18 17:17:39 +00:00
|
|
|
/**
|
|
|
|
* This list contains all the external editors supported on Windows. Add a new
|
|
|
|
* entry here to add support for your favorite editor.
|
|
|
|
**/
|
2022-08-30 07:20:32 +00:00
|
|
|
const editors: WindowsExternalEditor[] = [
|
2021-01-18 17:17:39 +00:00
|
|
|
...
|
|
|
|
]
|
2017-10-13 04:49:58 +00:00
|
|
|
```
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
If you want to add another editor, you just need to add a new entry to this
|
|
|
|
list. The compiler will help you with the info needed about the new editor.
|
|
|
|
|
|
|
|
The `name` attribute will be shown in the list of supported editors inside the
|
|
|
|
app, but will also be treated as the identifier of the editor, so it must be
|
|
|
|
unique.
|
2017-10-13 05:42:14 +00:00
|
|
|
|
|
|
|
The steps for resolving each editor can be found in `findApplication()` and in
|
2017-10-13 04:49:58 +00:00
|
|
|
pseudocode looks like this:
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2017-10-13 04:49:58 +00:00
|
|
|
```ts
|
2022-08-30 07:20:32 +00:00
|
|
|
async function findApplication(editor: WindowsExternalEditor) {
|
2017-10-13 04:49:58 +00:00
|
|
|
// find install location in registry
|
|
|
|
// validate installation
|
|
|
|
// find executable to launch
|
|
|
|
}
|
|
|
|
```
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2017-10-13 04:49:58 +00:00
|
|
|
### Step 1: Find the Install Location
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2017-10-13 05:42:14 +00:00
|
|
|
Windows programs are typically installed by the user. Installers will add
|
|
|
|
entries to the registry to help the OS with cleaning up later, if the user
|
|
|
|
wishes to uninstall. These entries are used by GitHub Desktop to identify
|
|
|
|
relevant programs and where they can be located.
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
The registry locations for each editor are listed in the `registryKeys`
|
|
|
|
property. Some editors support multiple install locations, but are structurally
|
|
|
|
the same (for example 64-bit or 32-bit application, or stable and developer
|
2017-10-13 05:42:14 +00:00
|
|
|
channels).
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
```ts
|
2021-01-18 17:17:39 +00:00
|
|
|
{
|
|
|
|
name: 'Visual Studio Code',
|
|
|
|
registryKeys: [
|
|
|
|
// 64-bit version of VSCode (user) - provided by default in 64-bit Windows
|
|
|
|
CurrentUserUninstallKey('{771FD6B0-FA20-440A-A002-3B3BAC16DC50}_is1'),
|
|
|
|
// 32-bit version of VSCode (user)
|
|
|
|
CurrentUserUninstallKey('{D628A17A-9713-46BF-8D57-E671B46A741E}_is1'),
|
2022-08-30 07:20:32 +00:00
|
|
|
// ARM64 version of VSCode (user)
|
|
|
|
CurrentUserUninstallKey('{D9E514E7-1A56-452D-9337-2990C0DC4310}_is1'),
|
2021-01-18 17:17:39 +00:00
|
|
|
// 64-bit version of VSCode (system) - was default before user scope installation
|
|
|
|
LocalMachineUninstallKey('{EA457B21-F73E-494C-ACAB-524FDE069978}_is1'),
|
|
|
|
// 32-bit version of VSCode (system)
|
|
|
|
Wow64LocalMachineUninstallKey(
|
|
|
|
'{F8A2A208-72B3-4D61-95FC-8A65D340689B}_is1'
|
|
|
|
),
|
|
|
|
],
|
|
|
|
...
|
2017-10-13 04:49:58 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
If you're not sure how your editor is installed, check one of these locations:
|
2017-08-08 11:00:12 +00:00
|
|
|
|
|
|
|
- `HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall` -
|
|
|
|
uninstall information about 64-bit Windows software is found here
|
|
|
|
|
|
|
|
- `HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall` -
|
|
|
|
uninstall information about 32-bit Windows software is found here
|
|
|
|
|
|
|
|
- `HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall` -
|
2017-10-13 04:49:58 +00:00
|
|
|
uninstall information for software that doesn't require administrator
|
|
|
|
permissions is found here
|
|
|
|
|
|
|
|
|
2017-10-24 06:40:52 +00:00
|
|
|
Your editor is probably hiding behind a GUID in one of these locations - this
|
2017-12-20 03:39:24 +00:00
|
|
|
is the key that Desktop needs to read the registry and find the installation for your editor.
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
As seen in the example above, you can use the following helper functions to
|
|
|
|
enumerate the uninstall keys:
|
|
|
|
- `LocalMachineUninstallKey` for keys in
|
|
|
|
`HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall`
|
|
|
|
- `Wow64LocalMachineUninstallKey` for keys in
|
|
|
|
`HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall`
|
|
|
|
- `CurrentUserUninstallKey` for keys in
|
|
|
|
`HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall`
|
|
|
|
|
2017-10-13 04:49:58 +00:00
|
|
|
### Step 2: Validate The Installation
|
|
|
|
|
|
|
|
As part of installing to the registry, a program will insert a
|
2017-08-08 11:00:12 +00:00
|
|
|
number of key-value pairs - Desktop will enumerate these to ensure it's the
|
2021-01-19 12:04:41 +00:00
|
|
|
application it expects, and identify the install location of the
|
2017-08-08 11:00:12 +00:00
|
|
|
application.
|
|
|
|
|
2021-01-19 12:04:41 +00:00
|
|
|
There are two steps to this process. The first step is reading the registry, and
|
2021-01-18 17:17:39 +00:00
|
|
|
you can see this code in `getAppInfo()`:
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
```ts
|
2021-01-18 17:17:39 +00:00
|
|
|
function getAppInfo(
|
2022-08-30 07:20:32 +00:00
|
|
|
editor: WindowsExternalEditor,
|
2021-01-18 17:17:39 +00:00
|
|
|
keys: ReadonlyArray<RegistryValue>
|
|
|
|
): IWindowsAppInformation {
|
|
|
|
const displayName = getKeyOrEmpty(keys, 'DisplayName')
|
|
|
|
const publisher = getKeyOrEmpty(keys, 'Publisher')
|
|
|
|
const installLocation = getKeyOrEmpty(
|
|
|
|
keys,
|
|
|
|
editor.installLocationRegistryKey ?? 'InstallLocation'
|
|
|
|
)
|
|
|
|
return { displayName, publisher, installLocation }
|
2017-10-13 04:49:58 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-10-13 05:42:14 +00:00
|
|
|
If you launch `regedit` and browse to the key associated with your editor, you
|
|
|
|
should see a list like this in the right-hand pane:
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
![](https://user-images.githubusercontent.com/359239/31530323-696543d8-b02b-11e7-9421-3fad76230bea.png)
|
|
|
|
|
2017-10-13 05:42:14 +00:00
|
|
|
Desktop needs enough information to validate the installation - usually
|
2017-10-13 05:31:37 +00:00
|
|
|
something related to the name of the program, and the identity of the
|
2017-10-13 05:42:14 +00:00
|
|
|
publisher - along with the install location on disk.
|
2017-10-13 04:49:58 +00:00
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
The app will look for the app name in the `DisplayName` registry key, the
|
|
|
|
publisher in the `Publisher` registry key, and the install location in the
|
|
|
|
`InstallLocation` registry key. However, this last one can be overridden by
|
|
|
|
setting a different registry key in the `installLocationRegistryKey` attribute
|
|
|
|
of your new editor entry in the `editors` list.
|
|
|
|
|
2022-08-30 07:37:21 +00:00
|
|
|
The second step is to validate the installation:
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
```ts
|
2021-01-18 17:17:39 +00:00
|
|
|
{
|
|
|
|
name: 'Visual Studio Code',
|
|
|
|
...
|
2022-08-30 07:20:32 +00:00
|
|
|
displayNamePrefix: 'Microsoft Visual Studio Code',
|
|
|
|
publisher: 'Microsoft Corporation',
|
2021-01-18 17:17:39 +00:00
|
|
|
},
|
2017-10-13 04:49:58 +00:00
|
|
|
```
|
|
|
|
|
2018-11-17 23:16:45 +00:00
|
|
|
### Step 3: Determine the program to launch
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
Now that Desktop knows the program is the one it expects, it can use the
|
|
|
|
install location to then find the executable to launch. Many editors provide a
|
2017-10-13 05:42:14 +00:00
|
|
|
shim or standalone tool to manage this, rather than launching the
|
2017-10-13 04:49:58 +00:00
|
|
|
executable directly. Whatever options there are, this should be a known
|
|
|
|
location with an interface that doesn't change between updates.
|
|
|
|
|
|
|
|
```ts
|
2021-01-18 17:17:39 +00:00
|
|
|
{
|
|
|
|
name: 'Visual Studio Code',
|
|
|
|
...
|
2022-08-30 07:20:32 +00:00
|
|
|
executableShimPaths: [['bin', 'code.cmd']],
|
2021-01-18 17:17:39 +00:00
|
|
|
},
|
2017-10-13 04:49:58 +00:00
|
|
|
```
|
|
|
|
|
2017-10-13 05:42:14 +00:00
|
|
|
Desktop will confirm this file exists on disk before launching - if it's
|
|
|
|
missing or lost it won't let you launch the external editor.
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
## macOS
|
|
|
|
|
|
|
|
The source for the editor integration on macOS is found in
|
2018-12-27 17:48:46 +00:00
|
|
|
[`app/src/lib/editors/darwin.ts`](https://github.com/desktop/desktop/blob/development/app/src/lib/editors/darwin.ts).
|
2017-10-13 04:49:58 +00:00
|
|
|
|
|
|
|
These editors are currently supported:
|
2017-08-08 11:00:12 +00:00
|
|
|
|
2017-10-13 04:49:58 +00:00
|
|
|
- [Atom](https://atom.io/)
|
2018-04-25 23:59:58 +00:00
|
|
|
- [MacVim](https://macvim-dev.github.io/macvim/)
|
2022-07-08 12:13:11 +00:00
|
|
|
- [Neovide](https://github.com/neovide/neovide)
|
2018-02-08 03:12:49 +00:00
|
|
|
- [Visual Studio Code](https://code.visualstudio.com/) - both stable and Insiders channel
|
2020-03-08 23:26:55 +00:00
|
|
|
- [Visual Studio Codium](https://vscodium.com/)
|
2017-10-13 04:49:58 +00:00
|
|
|
- [Sublime Text](https://www.sublimetext.com/)
|
2017-11-30 14:06:42 +00:00
|
|
|
- [BBEdit](http://www.barebones.com/products/bbedit/)
|
2020-03-27 15:30:01 +00:00
|
|
|
- [JetBrains PhpStorm](https://www.jetbrains.com/phpstorm/)
|
2020-03-31 21:22:43 +00:00
|
|
|
- [JetBrains PyCharm](https://www.jetbrains.com/pycharm/)
|
2020-03-27 15:30:01 +00:00
|
|
|
- [JetBrains RubyMine](https://www.jetbrains.com/rubymine/)
|
2021-03-04 03:48:01 +00:00
|
|
|
- [RStudio](https://rstudio.com/)
|
2018-02-02 17:50:37 +00:00
|
|
|
- [TextMate](https://macromates.com)
|
2018-06-17 16:22:11 +00:00
|
|
|
- [Brackets](http://brackets.io/)
|
2018-05-25 15:42:55 +00:00
|
|
|
- To use Brackets the Command Line shortcut must be installed.
|
|
|
|
- This can be done by opening Brackets, choosing File > Install Command Line Shortcut
|
2020-03-27 15:30:01 +00:00
|
|
|
- [JetBrains WebStorm](https://www.jetbrains.com/webstorm/)
|
2018-09-19 12:39:20 +00:00
|
|
|
- [Typora](https://typora.io/)
|
2020-03-08 23:26:55 +00:00
|
|
|
- [CodeRunner](https://coderunnerapp.com/)
|
2018-11-01 16:12:03 +00:00
|
|
|
- [SlickEdit](https://www.slickedit.com)
|
2020-03-27 15:30:01 +00:00
|
|
|
- [JetBrains IntelliJ IDEA](https://www.jetbrains.com/idea/)
|
2020-03-08 23:26:55 +00:00
|
|
|
- [Xcode](https://developer.apple.com/xcode/)
|
2020-03-27 15:30:01 +00:00
|
|
|
- [JetBrains GoLand](https://www.jetbrains.com/go/)
|
2020-03-21 10:59:05 +00:00
|
|
|
- [Android Studio](https://developer.android.com/studio)
|
2020-04-02 08:02:20 +00:00
|
|
|
- [JetBrains Rider](https://www.jetbrains.com/rider/)
|
2021-01-18 17:17:39 +00:00
|
|
|
- [Nova](https://nova.app/)
|
2022-05-23 17:41:34 +00:00
|
|
|
- [Aptana Studio](http://www.aptana.com/)
|
2022-08-18 14:16:48 +00:00
|
|
|
- [Emacs](https://www.gnu.org/software/emacs/)
|
2022-09-04 19:40:23 +00:00
|
|
|
- [Lite XL](https://lite-xl.com/)
|
2018-06-17 16:22:11 +00:00
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
These are defined in a list at the top of the file:
|
2017-10-13 05:31:37 +00:00
|
|
|
|
|
|
|
```ts
|
2021-01-18 17:17:39 +00:00
|
|
|
/**
|
|
|
|
* This list contains all the external editors supported on macOS. Add a new
|
|
|
|
* entry here to add support for your favorite editor.
|
|
|
|
**/
|
|
|
|
const editors: IDarwinExternalEditor[] = [
|
|
|
|
...
|
|
|
|
]
|
2017-10-13 05:31:37 +00:00
|
|
|
```
|
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
If you want to add another editor, you just need to add a new entry to this
|
|
|
|
list. The compiler will help you with the info needed about the new editor.
|
2017-10-13 05:42:14 +00:00
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
The `name` attribute will be shown in the list of supported editors inside the
|
|
|
|
app, but will also be treated as the identifier of the editor, so it must be
|
|
|
|
unique.
|
2017-10-13 05:31:37 +00:00
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
The function that resolves each editor is `findApplication()`, which only looks
|
|
|
|
for the path to the installation and verifies it exists.
|
2017-10-13 05:31:37 +00:00
|
|
|
|
2021-01-18 17:17:39 +00:00
|
|
|
### Find bundle identifier
|
2017-08-08 11:00:12 +00:00
|
|
|
|
|
|
|
macOS programs are packaged as application bundles, and applications can
|
2017-10-13 05:31:37 +00:00
|
|
|
read information from the OS to see if they are present.
|
2017-08-08 11:00:12 +00:00
|
|
|
|
|
|
|
The `CFBundleIdentifier` value in the plist is what applications use to
|
2017-10-12 00:32:10 +00:00
|
|
|
uniquely identify themselves, for example `com.github.GitHubClient` is the
|
2017-10-13 05:31:37 +00:00
|
|
|
identifier for GitHub Desktop.
|
|
|
|
|
2021-01-19 09:55:29 +00:00
|
|
|
To find the bundle identifier for an application, using `PhpStorm` as an example,
|
|
|
|
run `defaults read /Applications/PhpStorm.app/Contents/Info CFBundleIdentifier`.
|
|
|
|
|
2021-01-19 15:14:20 +00:00
|
|
|
With this bundle identifier, GitHub Desktop can obtain the install location of
|
|
|
|
the app.
|
2021-01-18 17:17:39 +00:00
|
|
|
|
|
|
|
The `bundleIdentifiers` attribute lists all the bundle identifiers that can
|
|
|
|
refer to the editor:
|
2017-10-13 05:31:37 +00:00
|
|
|
|
|
|
|
```ts
|
2021-01-18 17:17:39 +00:00
|
|
|
{
|
|
|
|
name: 'Visual Studio Code',
|
|
|
|
bundleIdentifiers: ['com.microsoft.VSCode'],
|
|
|
|
},
|
2017-10-13 05:31:37 +00:00
|
|
|
```
|
|
|
|
|
2017-10-13 05:42:14 +00:00
|
|
|
AppKit provides an [`API`](https://developer.apple.com/documentation/appkit/nsworkspace/1533086-absolutepathforappbundlewithiden?language=objc)
|
|
|
|
for searching for an application bundle. If it finds an application bundle,
|
|
|
|
it will return the path to the application on disk. Otherwise it will raise an
|
|
|
|
exception.
|
2017-10-13 05:31:37 +00:00
|
|
|
|
2017-10-13 04:49:58 +00:00
|
|
|
## Linux
|
|
|
|
|
2017-10-24 10:34:15 +00:00
|
|
|
The source for the editor integration on Linux is found in
|
2018-12-27 17:48:46 +00:00
|
|
|
[`app/src/lib/editors/linux.ts`](https://github.com/desktop/desktop/blob/development/app/src/lib/editors/linux.ts).
|
2017-10-24 06:40:52 +00:00
|
|
|
|
|
|
|
These editors are currently supported:
|
|
|
|
|
|
|
|
- [Atom](https://atom.io/)
|
2018-02-08 03:12:49 +00:00
|
|
|
- [Visual Studio Code](https://code.visualstudio.com/) - both stable and Insiders channel
|
2020-03-08 23:27:42 +00:00
|
|
|
- [Visual Studio Codium](https://vscodium.com/)
|
2017-10-24 06:40:52 +00:00
|
|
|
- [Sublime Text](https://www.sublimetext.com/)
|
2018-09-19 12:39:20 +00:00
|
|
|
- [Typora](https://typora.io/)
|
2018-11-01 16:12:03 +00:00
|
|
|
- [SlickEdit](https://www.slickedit.com)
|
2022-08-30 07:27:15 +00:00
|
|
|
- [Neovim](https://neovim.io/)
|
|
|
|
- [Code](https://github.com/elementary/code)
|
2022-09-04 19:40:23 +00:00
|
|
|
- [Lite XL](https://lite-xl.com/)
|
2017-10-24 06:40:52 +00:00
|
|
|
|
2021-01-19 10:51:44 +00:00
|
|
|
These are defined in a list at the top of the file:
|
2017-10-24 06:40:52 +00:00
|
|
|
|
|
|
|
```ts
|
2021-01-19 10:51:44 +00:00
|
|
|
/**
|
|
|
|
* This list contains all the external editors supported on Linux. Add a new
|
|
|
|
* entry here to add support for your favorite editor.
|
|
|
|
**/
|
|
|
|
const editors: ILinuxExternalEditor[] = [
|
|
|
|
...
|
|
|
|
]
|
2017-10-13 05:00:28 +00:00
|
|
|
```
|
|
|
|
|
2021-01-19 10:51:44 +00:00
|
|
|
If you want to add another editor, you just need to add a new entry to this
|
|
|
|
list. The compiler will help you with the info needed about the new editor.
|
2017-10-24 06:40:52 +00:00
|
|
|
|
2021-01-19 10:51:44 +00:00
|
|
|
The `name` attribute will be shown in the list of supported editors inside the
|
|
|
|
app, but will also be treated as the identifier of the editor, so it must be
|
|
|
|
unique.
|
2017-10-24 06:40:52 +00:00
|
|
|
|
2021-01-19 10:51:44 +00:00
|
|
|
### Find executable path
|
2017-10-24 06:40:52 +00:00
|
|
|
|
2021-01-19 10:51:44 +00:00
|
|
|
The `paths` attribute must contain a list of paths where executables for the
|
|
|
|
editor might be found.
|
2017-10-24 06:40:52 +00:00
|
|
|
|
|
|
|
```ts
|
2021-01-19 10:51:44 +00:00
|
|
|
{
|
|
|
|
name: 'Visual Studio Code',
|
2022-08-30 07:27:15 +00:00
|
|
|
paths: ['/usr/share/code/bin/code', '/snap/bin/code', '/usr/bin/code'],
|
2021-01-19 10:51:44 +00:00
|
|
|
},
|
2017-10-24 06:40:52 +00:00
|
|
|
```
|