Add these key bindings for tcsh users in interactive mode:

bindkey "^W" backward-delete-word
    bindkey -k up history-search-backward
    bindkey -k down history-search-forward

Reviewed by:	-current
This commit is contained in:
Archie Cobbs 2001-01-10 02:37:16 +00:00
parent d113d3857e
commit 64ca32560d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70859

View File

@ -27,4 +27,9 @@ if ($?prompt) then
set history = 100
set savehist = 100
set mail = (/var/mail/$USER)
if ( $?tcsh ) then
bindkey "^W" backward-delete-word
bindkey -k up history-search-backward
bindkey -k down history-search-forward
endif
endif