aboutsummaryrefslogtreecommitdiff
path: root/plugins/openselected.lua
diff options
context:
space:
mode:
authorrxi <rxi@users.noreply.github.com>2020-05-22 08:18:39 +0100
committerrxi <rxi@users.noreply.github.com>2020-05-22 08:18:55 +0100
commitdaa0bfc6c55e4d503562d0b422c5e8d60834ca1b (patch)
tree758b54075363f3f6d4a66f6b29e13258d8ac28a0 /plugins/openselected.lua
parent45b2f56937691d055275687a504b2699dbf5b44a (diff)
downloadlite-xl-plugins-daa0bfc6c55e4d503562d0b422c5e8d60834ca1b.tar.gz
lite-xl-plugins-daa0bfc6c55e4d503562d0b422c5e8d60834ca1b.zip
Changed `openselected` to use `start` instead of `explorer` on windows
Diffstat (limited to 'plugins/openselected.lua')
-rw-r--r--plugins/openselected.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/openselected.lua b/plugins/openselected.lua
index 321d3e8..65fdeb8 100644
--- a/plugins/openselected.lua
+++ b/plugins/openselected.lua
@@ -15,7 +15,7 @@ command.add("core.docview", {
core.log("Opening \"%s\"...", text)
if PLATFORM == "Windows" then
- system.exec("explorer " .. text)
+ system.exec("start " .. text)
else
system.exec(string.format("xdg-open %q", text))
end