diff options
author | rxi <rxi@users.noreply.github.com> | 2020-05-22 08:18:39 +0100 |
---|---|---|
committer | rxi <rxi@users.noreply.github.com> | 2020-05-22 08:18:55 +0100 |
commit | daa0bfc6c55e4d503562d0b422c5e8d60834ca1b (patch) | |
tree | 758b54075363f3f6d4a66f6b29e13258d8ac28a0 /plugins/openselected.lua | |
parent | 45b2f56937691d055275687a504b2699dbf5b44a (diff) | |
download | lite-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.lua | 2 |
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 |