aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorrxi <rxi@users.noreply.github.com>2020-06-14 11:57:46 +0100
committerrxi <rxi@users.noreply.github.com>2020-06-14 11:57:46 +0100
commit1d4b264e2988fe91b7071e0f86a22f97983da280 (patch)
tree5e272dfeb95ec31de65514d971b54471375299d2 /plugins
parent349aae592e75924089c0700387017529a494f1cc (diff)
parent34bb3bde792d53e4faa1d82702a9e17a5ca227cd (diff)
downloadlite-xl-plugins-1d4b264e2988fe91b7071e0f86a22f97983da280.tar.gz
lite-xl-plugins-1d4b264e2988fe91b7071e0f86a22f97983da280.zip
Merge branch 'master' of https://github.com/rxi/lite-plugins
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/linecopypaste.lua45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/linecopypaste.lua b/plugins/linecopypaste.lua
new file mode 100755
index 0000000..eb6f375
--- /dev/null
+++ b/plugins/linecopypaste.lua
@@ -0,0 +1,45 @@
+local core = require "core"
+local command = require "core.command"
+
+local function doc()
+ return core.active_view.doc
+end
+
+local line_in_clipboard = false
+
+local doc_copy = command.map["doc:copy"].perform
+command.map["doc:copy"].perform = function()
+ if doc():has_selection() then
+ doc_copy()
+ line_in_clipboard = false
+ else
+ local line = doc():get_selection()
+ system.set_clipboard(doc().lines[line])
+ line_in_clipboard = true
+ end
+end
+
+local doc_cut = command.map["doc:cut"].perform
+command.map["doc:cut"].perform = function()
+ if doc():has_selection() then
+ doc_cut()
+ line_in_clipboard = false
+ else
+ local line = doc():get_selection()
+ system.set_clipboard(doc().lines[line])
+ doc():remove(line, 1, line+1, 1)
+ doc():set_selection(line, 1)
+ line_in_clipboard = true
+ end
+end
+
+local doc_paste = command.map["doc:paste"].perform
+command.map["doc:paste"].perform = function()
+ if line_in_clipboard == false then
+ doc_paste()
+ else
+ local line, col = doc():get_selection()
+ doc():insert(line, 1, system.get_clipboard():gsub("\r", ""))
+ doc():set_selection(line+1, col)
+ end
+end