blob: 65fdeb812ec763c66efa05bd7c09af4cf6a1ab62 (
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
system.exec("start " .. text)
else
system.exec(string.format("xdg-open %q", text))
end
end,
})
keymap.add { ["ctrl+shift+o"] = "open-selected:open-selected" }
|