aboutsummaryrefslogtreecommitdiff
path: root/plugins/smartopenselected.lua
diff options
context:
space:
mode:
authorEric Gaudet <gaudet.eric@gmail.com>2023-01-22 12:01:54 -0800
committerGitHub <noreply@github.com>2023-01-22 15:01:54 -0500
commit91c84d467bf98f44645eb3057202cb5da113d2d7 (patch)
tree31ba757ebfffc66720e674d05a146d21fc340522 /plugins/smartopenselected.lua
parentd7ad7c0e3fecaf2c837c1017b385ddef0721911b (diff)
downloadlite-xl-plugins-91c84d467bf98f44645eb3057202cb5da113d2d7.tar.gz
lite-xl-plugins-91c84d467bf98f44645eb3057202cb5da113d2d7.zip
Add smartopenselected plugin (#176)
Try to open the selection as a filename or path in the project. Path separators are used to replace ".", so import path can also be found. Co-authored-by: Eric Gaudet <egaudet@thefind.com>
Diffstat (limited to 'plugins/smartopenselected.lua')
-rw-r--r--plugins/smartopenselected.lua48
1 files changed, 48 insertions, 0 deletions
diff --git a/plugins/smartopenselected.lua b/plugins/smartopenselected.lua
new file mode 100644
index 0000000..dfdb96d
--- /dev/null
+++ b/plugins/smartopenselected.lua
@@ -0,0 +1,48 @@
+-- mod-version:3
+local core = require "core"
+local command = require "core.command"
+local keymap = require "core.keymap"
+local common = require "core.common"
+local contextmenu = require "plugins.contextmenu"
+
+
+command.add("core.docview!", {
+ ["smart-open-selected:smart-open-selected"] = function(dv)
+ local doc = dv.doc
+ if not doc:has_selection() then
+ core.error("No text selected")
+ return
+ end
+
+ local text_orig = doc:get_text(doc:get_selection())
+ text_orig = text_orig:match( "^%s*(.-)%s*$" )
+
+ -- transform java/python imports to paths
+ local text_path, num = text_orig:gsub("[.]", PATHSEP)
+
+ -- keep the last . in case the path contains a file extension
+ local text_keep_extension, num = text_orig:gsub("[.]", PATHSEP, num - 1)
+
+ -- trim whitespace from the ends
+
+ for dir, item in core.get_project_files() do
+ if item.type == "file" and (
+ string.find(item.filename, text_orig)
+ or string.find(item.filename, text_path)
+ or string.find(item.filename, text_keep_extension)
+ ) then
+ local path = (dir == core.project_dir and "" or dir .. PATHSEP)
+ local filepath = common.home_encode(path .. item.filename)
+ core.root_view:open_doc(core.open_doc(common.home_expand(filepath)))
+ end
+ end
+ end,
+})
+
+
+contextmenu:register("core.docview", {
+ { text = "Smart Open Selection", command = "smart-open-selected:smart-open-selected" }
+})
+
+
+keymap.add { ["ctrl+shift+alt+p"] = "smart-open-selected:smart-open-selected" }