From 0e19efeb2ee2e38054284d633690b54e8eb9b8ce Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 17 Feb 2022 19:44:26 -0800 Subject: [PATCH] fix a conflicting keyboard shortcut --- toot-toot.tlv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toot-toot.tlv b/toot-toot.tlv index e5b0765..4d06ecb 100644 --- a/toot-toot.tlv +++ b/toot-toot.tlv @@ -153,7 +153,7 @@ - __teliva_timestamp: original menu: >menu = { - > {'^u', 'clear'}, + > {'^k', 'clear'}, > {'^w', 'write prose to file "toot" (edit hotkey does NOT save)'}, >} - __teliva_timestamp: original @@ -307,7 +307,7 @@ > cursor = cursor-1 > prose = prose:remove(cursor) > end - > elseif key == 21 then -- ctrl-u + > elseif key == 11 then -- ctrl-k > prose = '' > cursor = 1 > elseif key == 23 then -- ctrl-w