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 2001-01-10 17:35:28 +00:00
parent a45dd3f68d
commit e843a87882

View File

@ -26,4 +26,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