diff options
author | rxi <rxi@users.noreply.github.com> | 2020-06-06 09:44:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-06 09:44:39 +0100 |
commit | 47e25df87d1fd4b132ec554ffb1de70c2aba4c29 (patch) | |
tree | ac56460b11a0d7309ea5a1d5104a795a5c3e2f2c | |
parent | 504be1445cd667686b9e52e8508b6dc97debdaad (diff) | |
parent | a450754dd884fde1e85738ea80a4a27e21c9b630 (diff) | |
download | lite-xl-plugins-47e25df87d1fd4b132ec554ffb1de70c2aba4c29.tar.gz lite-xl-plugins-47e25df87d1fd4b132ec554ffb1de70c2aba4c29.zip |
Merge pull request #51 from bbs4murai/master
Fixed openfilelocation.lua
-rw-r--r-- | plugins/openfilelocation.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/openfilelocation.lua b/plugins/openfilelocation.lua index a97e47e..58c3d6f 100644 --- a/plugins/openfilelocation.lua +++ b/plugins/openfilelocation.lua @@ -5,6 +5,8 @@ local config = require "core.config" if PLATFORM == "Windows" then config.filemanager = "explorer" +elseif PLATFORM == "Mac OS X" then + config.filemanager = "open" else config.filemanager = "xdg-open" end |