From 258f16b0f452cd8f8f00a740c7e11434764bd728 Mon Sep 17 00:00:00 2001 From: PadowYT2 Date: Fri, 20 May 2022 22:10:51 +0800 Subject: [PATCH] Add support for detecting PhpStorm editor (#717) --- app/src/lib/editors/linux.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/src/lib/editors/linux.ts b/app/src/lib/editors/linux.ts index 13d932a88f0..8bf862ed722 100644 --- a/app/src/lib/editors/linux.ts +++ b/app/src/lib/editors/linux.ts @@ -100,6 +100,10 @@ const editors: ILinuxExternalEditor[] = [ name: 'Mousepad', paths: ['/usr/bin/mousepad'], }, + { + name: 'IntelliJ PhpStorm', + paths: ['/snap/bin/phpstorm'], + }, ] async function getAvailablePath(paths: string[]): Promise {