about summary refs log tree commit diff stats
path: root/edit.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-08-30 22:47:57 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-08-30 22:47:57 -0700
commit2dc1e690f08091851c79f7aba709ecd4603a7eef (patch)
tree67c22225ecc516ae63f0718854c74e2b11267976 /edit.lua
parent82b974af29f586b369a46783a969672a654ebf0f (diff)
parent1fc11feb28bf336f9a1d74e014ad4c7418001047 (diff)
downloadview.love-2dc1e690f08091851c79f7aba709ecd4603a7eef.tar.gz
Merge text.love
Diffstat (limited to 'edit.lua')
-rw-r--r--edit.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit.lua b/edit.lua
index 302e5e2..a0145a0 100644
--- a/edit.lua
+++ b/edit.lua
@@ -286,7 +286,7 @@ function edit.keychord_press(State, chord, key)
   elseif chord == 'C-c' then
     local s = Text.selection(State)
     if s then
-      App.setClipboardText(s)
+      App.set_clipboard(s)
     end
   -- dispatch to text
   else