fix a conflicting keyboard shortcut

This commit is contained in:
Kartik K. Agaram 2022-02-17 19:44:26 -08:00
parent 272d7532dc
commit 0e19efeb2e
1 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@
- __teliva_timestamp: original - __teliva_timestamp: original
menu: menu:
>menu = { >menu = {
> {'^u', 'clear'}, > {'^k', 'clear'},
> {'^w', 'write prose to file "toot" (edit hotkey does NOT save)'}, > {'^w', 'write prose to file "toot" (edit hotkey does NOT save)'},
>} >}
- __teliva_timestamp: original - __teliva_timestamp: original
@ -307,7 +307,7 @@
> cursor = cursor-1 > cursor = cursor-1
> prose = prose:remove(cursor) > prose = prose:remove(cursor)
> end > end
> elseif key == 21 then -- ctrl-u > elseif key == 11 then -- ctrl-k
> prose = '' > prose = ''
> cursor = 1 > cursor = 1
> elseif key == 23 then -- ctrl-w > elseif key == 23 then -- ctrl-w