aboutsummaryrefslogtreecommitdiff
path: root/plugins/openselected.lua
blob: f7dc917afb7774a806e0c0d1ac6871f3c1b17bb5 (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
27
-- lite-xl 1.16
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" }