Add INSERT to the termux key row

This commit is contained in:
Bram Schoenmakers 2023-08-27 23:25:20 +02:00
parent 4af9999834
commit 1b5cf26f77
2 changed files with 4 additions and 2 deletions

View File

@ -22,6 +22,7 @@ Put this in ~/.termux/termux.properties for a better Emacs experience inside Ter
{key: CTRL, popup: {macro: "CTRL x", display: "C-x"}}, \
{key: ALT, popup: {macro: "ALT x", display: "M-x"}}, \
{key: TAB}, \
{key: INS, popup: {macro: "ALT y", display: "M-y"}}, \
{key: DEL, popup: {macro: "CTRL k", display: C-k}}, \
{key: LEFT, popup: HOME}, \
{key: DOWN, popup: PGDN}, \
@ -653,9 +654,9 @@ Based on an answer at the [[https://emacs.stackexchange.com/a/77480/34645][Emacs
,* dabbrev-case-distinction
- nil: Treat expansions the same if they differ in case.
- nil: Treat expansions differently if they differ in case.
- *case-replace*: Distinguish if =case-replace= is nil.
- else: Treat them the same.
- else: Treat them the same if they differ in case.
,* dabbrev-case-fold-search

View File

@ -3,6 +3,7 @@ extra-keys = [[ \
{key: CTRL, popup: {macro: "CTRL x", display: "C-x"}}, \
{key: ALT, popup: {macro: "ALT x", display: "M-x"}}, \
{key: TAB}, \
{key: INS, popup: {macro: "ALT y", display: "M-y"}}, \
{key: DEL, popup: {macro: "CTRL k", display: C-k}}, \
{key: LEFT, popup: HOME}, \
{key: DOWN, popup: PGDN}, \