aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc/fish.in
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-10-19 21:50:23 +1000
committerGravatar axel <axel@liljencrantz.se>2006-10-19 21:50:23 +1000
commitea998b03f236be4e8af73474d994af5bbc4b0287 (patch)
tree327fef8d81e4ea82967eeb274d137420044a4de3 /etc/fish.in
parent52b2525b0e07970d613ef6e9cc3da41583662e8b (diff)
First stab at directory transition. Test with care...
darcs-hash:20061019115023-ac50b-30c3fd51d8af8a616d63dfcac39370d7fe6d144e.gz
Diffstat (limited to 'etc/fish.in')
-rw-r--r--etc/fish.in64
1 files changed, 0 insertions, 64 deletions
diff --git a/etc/fish.in b/etc/fish.in
deleted file mode 100644
index 1c85fb28..00000000
--- a/etc/fish.in
+++ /dev/null
@@ -1,64 +0,0 @@
-#
-# Init file for fish
-#
-# @configure_input@
-
-#
-# Set default field separators
-#
-
-set -g IFS \ \t\n
-
-#
-# Some things should only be done for login terminals
-#
-
-if status --is-login
-
- #
- # Set some value for LANG if nothing was set before, and this is a
- # login shell.
- #
-
- if not set -q LANG >/dev/null
- set -gx LANG en_US.UTF-8
- end
-
- # Check for i18n information in
- # /etc/sysconfig/i18n
-
- if test -f /etc/sysconfig/i18n
- eval (cat /etc/sysconfig/i18n |sed -ne 's/^\([a-zA-Z]*\)=\(.*\)$/set -gx \1 \2;/p')
- end
-
- #
- # Put linux consoles in unicode mode.
- #
-
- if expr "$LANG" : ".*\.[Uu][Tt][Ff].*" >/dev/null
- if test "$TERM" = linux
- if which unicode_start >/dev/null
- unicode_start
- end
- end
- end
-end
-
-#
-# There are variables that contain colons that are not arrays. This
-# reverts them back to regular strings.
-#
-
-for i in DISPLAY
- if set -q $i
- set -- $i (printf ":%s" $$i|cut -c 2-)
- end
-end
-
-#
-# Load additional initialization files
-#
-
-for i in fish.d/*.fish
- . $i
-end