blob: 5fadbecc9ebf47fd67a8e8eece71aaf9c2534ee5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
local core = require "core"
local command = require "core.command"
local keymap = require "core.keymap"
command.add("core.docview", {
["open-selected:open-selected"] = function()
local doc = core.active_view.doc
if not doc:has_selection() then
core.error("No text selected")
return
end
local text = doc:get_text(doc:get_selection())
core.log("Opening \"%s\"...", text)
if PLATFORM == "Windows" then
os.execute(string.format("start explorer %s", text))
else
os.execute(string.format("xdg-open %q &", text))
end
end,
})
keymap.add { ["ctrl+shift+o"] = "open-selected:open-selected" }
|