boo#1007715

OBS-URL: https://build.opensuse.org/package/show/shells/tcsh?expand=0&rev=87
This commit is contained in:
Dr. Werner Fink 2019-10-17 10:38:47 +00:00 committed by Git OBS Bridge
parent 70dcde09e3
commit d582af6155
2 changed files with 12 additions and 1 deletions

View File

@ -726,7 +726,7 @@ if ( "$TERM" == "mlterm" ) then
bindkey "^[9" history-search-backward
endif
#
if ( "$TERM" == "rxvt-unicode" ) then
if ( "$TERM" == "rxvt-unicode" || $TERM == "rxvt-unicode-256color" ) then
bindkey '^[[23$' undefined-key
bindkey '^[[24$' undefined-key
bindkey "^[[11\^" undefined-key
@ -775,6 +775,10 @@ if ( "$TERM" == "rxvt-unicode" ) then
bindkey "^[^[Ow" beginning-of-line
bindkey "^[^[Ox" up-history
bindkey "^[^[Oy" history-search-backward
bindkey "^[Oc" forward-word
bindkey "^[Od" backward-word
bindkey "^[Oa" history-search-backward
bindkey "^[Ob" history-search-forward
bindkey "^[[c" forward-word
bindkey "^[[d" backward-word
bindkey "^[[a" history-search-backward

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Oct 17 10:35:23 UTC 2019 - Dr. Werner Fink <werner@suse.de>
- Use both TERM names of urxvt: rxvt-unicode and rxvt-unicode-256-color
- Add some missed key escape sequences for urxvt-unicode
terminal as well (boo#1007715).
-------------------------------------------------------------------
Mon Oct 14 08:34:04 UTC 2019 - Dr. Werner Fink <werner@suse.de>