From 2cd8a2203453878baa90ecf7fb978d8e3d2dcace 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 e53cee7c535..56bd780ca22 100644 --- a/app/src/lib/editors/linux.ts +++ b/app/src/lib/editors/linux.ts @@ -148,6 +148,10 @@ const editors: ILinuxExternalEditor[] = [ name: 'Mousepad', paths: ['/usr/bin/mousepad'], }, + { + name: 'IntelliJ PhpStorm', + paths: ['/snap/bin/phpstorm'], + }, ] async function getAvailablePath(paths: string[]): Promise {