mirror of
https://github.com/ksherlock/a2-terminfo.git
synced 2024-12-27 16:31:37 +00:00
33842ca31f
not usable since 0 is needed for position, which interferes with C-strings.
54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
if [ _$TERM = "_gno-console" ]; then
|
|
stty kill ^X # default line kill char is ^U (right arrow)
|
|
|
|
bind Control-H:backward-char
|
|
bind Control-U:forward-char
|
|
bind Control-J:next-history
|
|
bind Control-K:previous-history
|
|
bind Control-X:unix-line-discard
|
|
fi
|
|
|
|
if [ _$TERM = "_gsos-console" ]; then
|
|
stty kill ^X # default line kill char is ^U (right arrow)
|
|
stty oxtabs # expand tabs to spaces
|
|
tput init # make sure CR doesn't also LF.
|
|
|
|
bind Control-H:backward-char
|
|
bind Control-U:forward-char
|
|
bind Control-J:next-history
|
|
bind Control-K:previous-history
|
|
bind Control-X:unix-line-discard
|
|
fi
|
|
|
|
|
|
if [ _$TERM = "_proterm-special" ]; then
|
|
stty kill ^X # default line kill char is ^U (right arrow)
|
|
|
|
bind Control-H:backward-char
|
|
bind Control-U:forward-char
|
|
bind Control-J:next-history
|
|
bind Control-K:previous-history
|
|
bind Control-X:unix-line-discard
|
|
fi
|
|
|
|
if [ _$TERM = "_appleIIe" ]; then
|
|
stty kill ^X # default line kill char is ^U (right arrow)
|
|
|
|
bind Control-H:backward-char
|
|
bind Control-U:forward-char
|
|
bind Control-J:next-history
|
|
bind Control-K:previous-history
|
|
bind Control-X:unix-line-discard
|
|
fi
|
|
|
|
if [ _$TERM = "_appleIII" ]; then
|
|
stty kill ^X # default line kill char is ^U (right arrow)
|
|
stty oxtabs cs7 # expand tabs to spaces, 7-bit text.
|
|
|
|
bind Control-H:backward-char
|
|
bind Control-U:forward-char
|
|
bind Control-J:next-history
|
|
bind Control-K:previous-history
|
|
bind Control-X:unix-line-discard
|
|
fi
|