Better support of Midnight Commander (bsc#1170527)

OBS-URL: https://build.opensuse.org/package/show/shells/tcsh?expand=0&rev=102
This commit is contained in:
Dr. Werner Fink 2020-05-07 08:24:01 +00:00 committed by Git OBS Bridge
parent dcd513cc42
commit db9a933c42
2 changed files with 17 additions and 6 deletions

View File

@ -31,12 +31,17 @@ bindkey "^[[3~" delete-char
bindkey "^[[4~" end-of-line
bindkey "^[[5~" history-search-backward
bindkey "^[[6~" history-search-forward
bindkey "^M[1~" beginning-of-line
bindkey "^M[2~" yank
bindkey "^M[3~" delete-char
bindkey "^M[4~" end-of-line
bindkey "^M[5~" history-search-backward
bindkey "^M[6~" history-search-forward
if ( ${?MC_SID} == 0 ) then
#
# Those bindings interfere with Midnight Commander
#
bindkey "^M[1~" beginning-of-line
bindkey "^M[2~" yank
bindkey "^M[3~" delete-char
bindkey "^M[4~" end-of-line
bindkey "^M[5~" history-search-backward
bindkey "^M[6~" history-search-forward
endif
bindkey -r "\233"
bindkey "\2331~" beginning-of-line
bindkey "\2332~" yank

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu May 7 08:22:30 UTC 2020 - Dr. Werner Fink <werner@suse.de>
- Better support of Midnight Commander (bsc#1170527)
* Do avoid locked mc/tcsh pair each waiting on the other
-------------------------------------------------------------------
Mon Feb 24 12:25:05 UTC 2020 - Dr. Werner Fink <werner@suse.de>