From dd5e4146ad05d01ae979b1b029f24472f6436c44 Mon Sep 17 00:00:00 2001 From: Zac McManus Date: Mon, 5 Feb 2024 06:36:51 +1100 Subject: [PATCH] Add Pluma support for Linux external editor options (#996) * Added Pluma support https://en.wikipedia.org/wiki/Pluma_(text_editor) * Added Pluma support --- app/src/lib/editors/linux.ts | 4 ++++ docs/technical/editor-integration.md | 1 + 2 files changed, 5 insertions(+) diff --git a/app/src/lib/editors/linux.ts b/app/src/lib/editors/linux.ts index 285b155b7dc..435485774af 100644 --- a/app/src/lib/editors/linux.ts +++ b/app/src/lib/editors/linux.ts @@ -174,6 +174,10 @@ const editors: ILinuxExternalEditor[] = [ name: 'Pulsar', paths: ['/usr/bin/pulsar'], }, + { + name: 'Pluma', + paths: ['/usr/bin/pluma'], + }, ] async function getAvailablePath(paths: string[]): Promise { diff --git a/docs/technical/editor-integration.md b/docs/technical/editor-integration.md index 9e626b2c26d..b8f6a9124f2 100644 --- a/docs/technical/editor-integration.md +++ b/docs/technical/editor-integration.md @@ -357,6 +357,7 @@ These editors are currently supported: - [JetBrains Goland](https://www.jetbrains.com/go/) - [Emacs](https://www.gnu.org/software/emacs/) - [Pulsar](https://pulsar-edit.dev/) + - [Pluma](https://github.com/mate-desktop/pluma) These are defined in a list at the top of the file: