From ed3ebc7c4daa9aa15351cc922085f3d143919f21 Mon Sep 17 00:00:00 2001 From: Archie Cobbs Date: Wed, 10 Jan 2001 17:35:28 +0000 Subject: [PATCH] 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 --- share/skel/dot.cshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/share/skel/dot.cshrc b/share/skel/dot.cshrc index 2513da9cacbc..89993eccc9f4 100644 --- a/share/skel/dot.cshrc +++ b/share/skel/dot.cshrc @@ -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