summaryrefslogtreecommitdiffstats
path: root/root/.tcshrc
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2013-01-15 10:12:40 -0500
committerjim-p <jimp@pfsense.org>2013-01-15 10:13:30 -0500
commitb3435de108a2291950e147cd321e3e1f4733ff02 (patch)
tree2334dc8e4b8187d5947900cb246d12a378e3c042 /root/.tcshrc
parent8a16c5502ce2ca5877611a4a4a2cffe61c726b71 (diff)
downloadpfsense-b3435de108a2291950e147cd321e3e1f4733ff02.zip
pfsense-b3435de108a2291950e147cd321e3e1f4733ff02.tar.gz
Fixup home/end/ins/del in shell.
Diffstat (limited to 'root/.tcshrc')
-rw-r--r--root/.tcshrc16
1 files changed, 16 insertions, 0 deletions
diff --git a/root/.tcshrc b/root/.tcshrc
index 97ca003..3c777d3 100644
--- a/root/.tcshrc
+++ b/root/.tcshrc
@@ -3,3 +3,19 @@ set autologout="0"
set autolist set color set colorcat
setenv CLICOLOR "true"
setenv LSCOLORS "exfxcxdxbxegedabagacad"
+if ($term == "xterm" || $term == "vt100" || $term == "vt102" || $term == "vt220" || $term !~ "con*") then
+ bindkey "\e[2~" overwrite-mode # Ins
+ bindkey "\e[3~" delete-char # Del
+
+ bindkey "\e[1~" beginning-of-line # Home vt
+ bindkey "\e[4~" end-of-line # End vt
+
+ bindkey "\eOH" beginning-of-line # Home vt220
+ bindkey "\eOF" end-of-line # End vt220
+
+ bindkey "\e[H" beginning-of-line # Home kvt
+ bindkey "\e[F" end-of-line # End kvt
+
+ bindkey "\e[7~" beginning-of-line # Home rxvt/konsole
+ bindkey "\e[8~" end-of-line # End rxvt/konsole
+endif \ No newline at end of file
OpenPOWER on IntegriCloud