diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs index 0c9b78ca8..4733e09e9 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs @@ -322,7 +322,11 @@ namespace Flow.Launcher.Plugin.Explorer { try { - Process.Start(editorPath, '"' + record.FullPath + '"'); + Process.Start(new ProcessStartInfo() + { + FileName = editorPath, + ArgumentList = { record.FullPath } + }); return true; } catch (Exception e)