This commit is contained in:
parent
839528e602
commit
f1eb7d5f6e
54
bindkey.tcsh
54
bindkey.tcsh
@ -432,6 +432,17 @@ if ( "$TERM" == "xterm" ) then
|
|||||||
bindkey -s "^[Ow" "7"
|
bindkey -s "^[Ow" "7"
|
||||||
bindkey -s "^[Ox" "8"
|
bindkey -s "^[Ox" "8"
|
||||||
bindkey -s "^[Oy" "9"
|
bindkey -s "^[Oy" "9"
|
||||||
|
# Shift+Alt+KP_<0...9> of konsole
|
||||||
|
bindkey "^[0" yank
|
||||||
|
bindkey "^[1" end-of-line
|
||||||
|
bindkey "^[2" down-history
|
||||||
|
bindkey "^[3" history-search-forward
|
||||||
|
bindkey "^[4" backward-word
|
||||||
|
bindkey -c "^[5" "source /etc/csh.cshrc"
|
||||||
|
bindkey "^[6" forward-word
|
||||||
|
bindkey "^[7" beginning-of-line
|
||||||
|
bindkey "^[8" up-history
|
||||||
|
bindkey "^[9" history-search-backward
|
||||||
endif
|
endif
|
||||||
#
|
#
|
||||||
if ( "$TERM" == "kterm" ) then
|
if ( "$TERM" == "kterm" ) then
|
||||||
@ -556,16 +567,17 @@ if ( "$TERM" == "mlterm" ) then
|
|||||||
bindkey "^[[21;8~" undefined-key
|
bindkey "^[[21;8~" undefined-key
|
||||||
bindkey "^[[23;8~" undefined-key
|
bindkey "^[[23;8~" undefined-key
|
||||||
bindkey "^[[24;8~" undefined-key
|
bindkey "^[[24;8~" undefined-key
|
||||||
bindkey -s "^[1" "1"
|
# Shift+Alt+KP_<0...9>
|
||||||
bindkey -s "^[2" "2"
|
bindkey "^[0" yank
|
||||||
bindkey -s "^[3" "3"
|
bindkey "^[1" end-of-line
|
||||||
bindkey -s "^[4" "4"
|
bindkey "^[2" down-history
|
||||||
bindkey -s "^[5" "5"
|
bindkey "^[3" history-search-forward
|
||||||
bindkey -s "^[6" "6"
|
bindkey "^[4" backward-word
|
||||||
bindkey -s "^[7" "7"
|
bindkey -c "^[5" "source /etc/csh.cshrc"
|
||||||
bindkey -s "^[8" "8"
|
bindkey "^[6" forward-word
|
||||||
bindkey -s "^[9" "9"
|
bindkey "^[7" beginning-of-line
|
||||||
bindkey -s "^[0" "0"
|
bindkey "^[8" up-history
|
||||||
|
bindkey "^[9" history-search-backward
|
||||||
endif
|
endif
|
||||||
#
|
#
|
||||||
if ( "$TERM" == "rxvt-unicode" ) then
|
if ( "$TERM" == "rxvt-unicode" ) then
|
||||||
@ -648,26 +660,8 @@ if ( "$TERM" == "rxvt-unicode" ) then
|
|||||||
bindkey '^[^[[7$' beginning-of-line
|
bindkey '^[^[[7$' beginning-of-line
|
||||||
bindkey '^[^[[8$' end-of-line
|
bindkey '^[^[[8$' end-of-line
|
||||||
bindkey "^[=" newline
|
bindkey "^[=" newline
|
||||||
bindkey "\000" yank
|
# Shift+Ctrl+(Alt+)KP_<0...9> generates
|
||||||
bindkey "\001" end-of-line
|
# \000 ... \011 (^@ upto TAB) we ignore these
|
||||||
bindkey "\002" down-history
|
|
||||||
bindkey "\003" history-search-forward
|
|
||||||
bindkey "\004" backward-word
|
|
||||||
bindkey -s "\005" "source /etc/csh.cshrc"
|
|
||||||
bindkey "\006" forward-word
|
|
||||||
bindkey "\007" beginning-of-line
|
|
||||||
bindkey "\010" up-history
|
|
||||||
bindkey "\011" history-search-backward
|
|
||||||
bindkey "^[0" yank
|
|
||||||
bindkey "^[1" end-of-line
|
|
||||||
bindkey "^[2" down-history
|
|
||||||
bindkey "^[3" history-search-forward
|
|
||||||
bindkey "^[4" backward-word
|
|
||||||
bindkey -c "^[5" "source /etc/csh.cshrc"
|
|
||||||
bindkey "^[6" forward-word
|
|
||||||
bindkey "^[7" beginning-of-line
|
|
||||||
bindkey "^[8" up-history
|
|
||||||
bindkey "^[9" history-search-backward
|
|
||||||
endif
|
endif
|
||||||
#
|
#
|
||||||
# EMACS line editing
|
# EMACS line editing
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 19 12:21:34 CEST 2007 - werner@suse.de
|
||||||
|
|
||||||
|
- Small correction in bindkey.tcsh: for urxvt, mlterm, and konsole
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 16 14:41:03 CEST 2007 - werner@suse.de
|
Mon Jul 16 14:41:03 CEST 2007 - werner@suse.de
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ Group: System/Shells
|
|||||||
Requires: gawk textutils
|
Requires: gawk textutils
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
Version: 6.15.00
|
Version: 6.15.00
|
||||||
Release: 1
|
Release: 3
|
||||||
Summary: The C SHell
|
Summary: The C SHell
|
||||||
Source: ftp.astron.com:/pub/tcsh/tcsh-6.15.00.tar.bz2
|
Source: ftp.astron.com:/pub/tcsh/tcsh-6.15.00.tar.bz2
|
||||||
Source1: nls-iconv
|
Source1: nls-iconv
|
||||||
@ -128,6 +128,8 @@ Authors:
|
|||||||
%{_datadir}/locale/*/LC_MESSAGES/tcsh
|
%{_datadir}/locale/*/LC_MESSAGES/tcsh
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jul 19 2007 - werner@suse.de
|
||||||
|
- Small correction in bindkey.tcsh: for urxvt, mlterm, and konsole
|
||||||
* Mon Jul 16 2007 - werner@suse.de
|
* Mon Jul 16 2007 - werner@suse.de
|
||||||
- Update to tcsh version V6.15.00
|
- Update to tcsh version V6.15.00
|
||||||
* fix extension eating windows code
|
* fix extension eating windows code
|
||||||
|
Loading…
Reference in New Issue
Block a user