diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2021-12-05 22:56:04 -0500 |
---|---|---|
committer | jgmdev <jgmdev@gmail.com> | 2022-05-22 13:02:00 -0400 |
commit | 3fcf065be6387c5bb38a46924f5ea1a7bb17850d (patch) | |
tree | 19b3c571c7e1beae325049e56e3df12a0a647637 /plugins/openfilelocation.lua | |
parent | c569b3b3697c1656c78ec4b4d233d4ed78fa898a (diff) | |
download | lite-xl-plugins-3fcf065be6387c5bb38a46924f5ea1a7bb17850d.tar.gz lite-xl-plugins-3fcf065be6387c5bb38a46924f5ea1a7bb17850d.zip |
Appropriately merged config hashes.
Diffstat (limited to 'plugins/openfilelocation.lua')
-rw-r--r-- | plugins/openfilelocation.lua | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/plugins/openfilelocation.lua b/plugins/openfilelocation.lua index b16ee82..0328142 100644 --- a/plugins/openfilelocation.lua +++ b/plugins/openfilelocation.lua @@ -5,15 +5,16 @@ local config = require "core.config" config.plugins.openfilelocation = {} -if PLATFORM == "Windows" then - config.plugins.openfilelocation.filemanager = "explorer" -elseif PLATFORM == "Mac OS X" then - config.plugins.openfilelocation.filemanager = "open" -else - config.plugins.openfilelocation.filemanager = "xdg-open" +if not config.plugins.openfilelocation.filemanager then + if PLATFORM == "Windows" then + config.plugins.openfilelocation.filemanager = "explorer" + elseif PLATFORM == "Mac OS X" then + config.plugins.openfilelocation.filemanager = "open" + else + config.plugins.openfilelocation.filemanager = "xdg-open" + end end - command.add("core.docview", { ["open-file-location:open-file-location"] = function() local doc = core.active_view.doc |