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 17:35:28 +00:00
parent 72c60cff38
commit ed3ebc7c4d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70892

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