diff options
Diffstat (limited to 'plugins/openfilelocation.lua')
-rw-r--r-- | plugins/openfilelocation.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/openfilelocation.lua b/plugins/openfilelocation.lua index e57b740..a97e47e 100644 --- a/plugins/openfilelocation.lua +++ b/plugins/openfilelocation.lua @@ -17,12 +17,12 @@ command.add("core.docview", { core.error "Cannot open location of unsaved doc" return end - local folder_name = doc.filename:match("^(.-)[^/\\]*$") - core.log("Opening \"%s\"", folder_name) + local folder = doc.filename:match("^(.*)[/\\].*$") or "." + core.log("Opening \"%s\"", folder) if PLATFORM == "Windows" then - os.execute(string.format("start %s %s", config.filemanager, folder_name)) + system.exec(string.format("%s %s", config.filemanager, folder)) else - os.execute(string.format("%s %q", config.filemanager, folder_name)) + system.exec(string.format("%s %q", config.filemanager, folder)) end end }) |