Deleted Added
full compact
dot.cshrc (63199) dot.cshrc (70892)
1# $FreeBSD: head/share/skel/dot.cshrc 63199 2000-07-15 03:24:18Z rwatson $
1# $FreeBSD: head/share/skel/dot.cshrc 70892 2001-01-10 17:35:28Z archie $
2#
3# .cshrc - csh resource script, read at beginning of execution by each shell
4#
5# see also csh(1), environ(7).
6#
7
8alias h history 25
9alias j jobs -l

--- 11 unchanged lines hidden (view full) ---

21setenv BLOCKSIZE K
22
23if ($?prompt) then
24 # An interactive shell -- set some stuff up
25 set filec
26 set history = 100
27 set savehist = 100
28 set mail = (/var/mail/$USER)
2#
3# .cshrc - csh resource script, read at beginning of execution by each shell
4#
5# see also csh(1), environ(7).
6#
7
8alias h history 25
9alias j jobs -l

--- 11 unchanged lines hidden (view full) ---

21setenv BLOCKSIZE K
22
23if ($?prompt) then
24 # An interactive shell -- set some stuff up
25 set filec
26 set history = 100
27 set savehist = 100
28 set mail = (/var/mail/$USER)
29 if ( $?tcsh ) then
30 bindkey "^W" backward-delete-word
31 bindkey -k up history-search-backward
32 bindkey -k down history-search-forward
33 endif
29endif
34endif