Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions hide/Ide.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1774,6 +1774,8 @@ class Ide extends hide.tools.IdeData {
Sys.command(cmd);
};
case "Mac": Sys.command("open " + haxe.io.Path.directory(path));
case "Linux":
Sys.command('dbus-send --session --dest=org.freedesktop.FileManager1 --type=method_call /org/freedesktop/FileManager1 org.freedesktop.FileManager1.ShowItems array:string:"$path" string:""');
default: throw "Exploration not implemented on this platform";
}
}
Expand Down