From 0227b9591c9ceb57897b34201932e0454ad10eef Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Tue, 13 Dec 2022 19:02:27 +0800 Subject: [PATCH] Fix open with editor for files of which path contains blank --- Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs index 522286524..312ea3339 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs @@ -322,7 +322,7 @@ namespace Flow.Launcher.Plugin.Explorer { try { - Process.Start(editorPath, record.FullPath); + Process.Start(editorPath, '"' + record.FullPath + '"'); return true; } catch (Exception e)