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