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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
-- mod-version:3
local core = require "core"
local command = require "core.command"
local keymap = require "core.keymap"
local common = require "core.common"
local config = require "core.config"
local contextmenu = require "plugins.contextmenu"
local platform_filelauncher
if PLATFORM == "Windows" then
platform_filelauncher = "start"
elseif PLATFORM == "Mac OS X" then
platform_filelauncher = "open"
else
platform_filelauncher = "xdg-open"
end
config.plugins.openselected = common.merge({
filelauncher = platform_filelauncher,
-- The config specification used by the settings gui
config_spec = {
name = "Open Selected Text",
{
label = "File Launcher",
description = "Command used to open the selected path or link externally.",
path = "filelauncher",
type = "string",
default = platform_filelauncher
}
}
}, config.plugins.openselected)
command.add("core.docview!", {
["open-selected:open-selected"] = function(dv)
local doc = dv.doc
if not doc:has_selection() then
core.error("No text selected")
return
end
local text = doc:get_text(doc:get_selection())
-- trim whitespace from the ends
text = text:match( "^%s*(.-)%s*$" )
-- non-Windows platforms need the text quoted (%q)
if PLATFORM ~= "Windows" then
text = string.format("%q", text)
end
core.log("Opening %s...", text)
system.exec(config.plugins.openselected.filelauncher .. " " .. text)
end,
})
contextmenu:register("core.docview", {
contextmenu.DIVIDER,
{ text = "Open Selection", command = "open-selected:open-selected" }
})
keymap.add { ["ctrl+alt+o"] = "open-selected:open-selected" }
|