18 lines
305 B
Tcsh
18 lines
305 B
Tcsh
############################
|
|
### TCSH Bindkey scripts ###
|
|
############################
|
|
|
|
## Vi keybindings by default
|
|
bindkey -v
|
|
|
|
if( $?CSHENV_BINDKEY_CHOICE ) then
|
|
bindkey $CSHENV_BINDKEY_CHOICE
|
|
endif
|
|
|
|
|
|
bindkey ^G list-choices
|
|
|
|
###########################
|
|
# vim:filetype=tcsh
|
|
###########################
|