summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorHiago De Franco <hiago.franco@toradex.com>2025-05-26 14:10:42 -0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-05-29 15:14:37 +0100
commit435e5ee3195acc654c847967b70994cf5567de39 (patch)
tree699867581db6ba9900d9a2fd0657d5381aa3a7fa /meta/recipes-core
parenta2b0713e67cda0b029bf35eb07eb131729ee4e85 (diff)
downloadpoky-435e5ee3195acc654c847967b70994cf5567de39.tar.gz
readline: enable HOME, END, INSERT, and DELETE key bindings in inputrc
Enable readline inputrc bindings for HOME, END, INSERT, and DELETE keys to support common key sequences on terminal interfaces. These key sequences are commonly emitted by terminal emulators and physical keyboards. This enables expected shell behavior on embedded systems, especially when interacting over serial consoles or minimal terminal setups. (From OE-Core rev: 93ea8d1c38ab93912306dd5f7d57745c833161b0) Signed-off-by: Hiago De Franco <hiago.franco@toradex.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/readline/files/inputrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-core/readline/files/inputrc b/meta/recipes-core/readline/files/inputrc
index b5c4c8af24..4a2874bccc 100644
--- a/meta/recipes-core/readline/files/inputrc
+++ b/meta/recipes-core/readline/files/inputrc
@@ -24,12 +24,12 @@ set output-meta on
24$if mode=emacs 24$if mode=emacs
25 25
26# allow the use of the Home/End keys 26# allow the use of the Home/End keys
27# "\e[1~": beginning-of-line 27"\e[1~": beginning-of-line
28# "\e[4~": end-of-line 28"\e[4~": end-of-line
29 29
30# allow the use of the Delete/Insert keys 30# allow the use of the Delete/Insert keys
31# "\e[3~": delete-char 31"\e[3~": delete-char
32# "\e[2~": quoted-insert 32"\e[2~": quoted-insert
33 33
34# mappings for "page up" and "page down" to step to the beginning/end 34# mappings for "page up" and "page down" to step to the beginning/end
35# of the history 35# of the history