File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1003,6 +1003,8 @@ fn default_workspace_groups() -> Vec<WorkspaceGroup> {
10031003fn default_open_app_targets ( ) -> Vec < OpenAppTarget > {
10041004 let phpstorm_command = if cfg ! ( target_os = "windows" ) {
10051005 "phpstorm64.exe"
1006+ } else if cfg ! ( target_os = "linux" ) {
1007+ "phpstorm.sh"
10061008 } else {
10071009 "phpstorm"
10081010 } ;
Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ import {
77
88export const OPEN_APP_STORAGE_KEY = "open-workspace-app" ;
99export const DEFAULT_OPEN_APP_ID = isWindowsPlatform ( ) ? "finder" : "vscode" ;
10- const PHPSTORM_COMMAND = isWindowsPlatform ( ) ? "phpstorm64.exe" : "phpstorm" ;
10+ const PHPSTORM_COMMAND = isWindowsPlatform ( )
11+ ? "phpstorm64.exe"
12+ : isMacPlatform ( )
13+ ? "phpstorm"
14+ : "phpstorm.sh" ;
1115
1216export type OpenAppId = string ;
1317
You can’t perform that action at this time.
0 commit comments