Skip to content

Commit 0227b95

Browse files
Fix open with editor for files of which path contains blank
1 parent 6dd34b9 commit 0227b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ private Result CreateOpenWithEditorResult(SearchResult record)
322322
{
323323
try
324324
{
325-
Process.Start(editorPath, record.FullPath);
325+
Process.Start(editorPath, '"' + record.FullPath + '"');
326326
return true;
327327
}
328328
catch (Exception e)

0 commit comments

Comments
 (0)