summaryrefslogtreecommitdiff
path: root/plugins/profiles
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2014-11-06 10:42:38 -0800
committerRobby Russell <robby@planetargon.com>2014-11-06 10:42:38 -0800
commit7f75bb90e326fdb39de37c14a0813e52801b1bba (patch)
tree14bc3e5448b5d2afc822bbe890a12864026dc6d4 /plugins/profiles
parent7034b01cd10cebb2658f54aa07ac0ce5ee64e0e0 (diff)
parent95d795e8cad7d1a754dfad520309d7a41b69275f (diff)
downloadzsh-7f75bb90e326fdb39de37c14a0813e52801b1bba.tar.gz
zsh-7f75bb90e326fdb39de37c14a0813e52801b1bba.tar.bz2
zsh-7f75bb90e326fdb39de37c14a0813e52801b1bba.zip
Merge pull request #3223 from mcornella/use-special-vars
Use special variables where we can
Diffstat (limited to 'plugins/profiles')
-rw-r--r--plugins/profiles/profiles.plugin.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/profiles/profiles.plugin.zsh b/plugins/profiles/profiles.plugin.zsh
index 8faae6b53..4b3d6a852 100644
--- a/plugins/profiles/profiles.plugin.zsh
+++ b/plugins/profiles/profiles.plugin.zsh
@@ -2,7 +2,7 @@
# This will look for a custom profile for the local machine and each domain or
# subdomain it belongs to. (e.g. com, example.com and foo.example.com)
-parts=(${(s:.:)$(hostname)})
+parts=(${(s:.:)$HOST})
for i in {${#parts}..1}; do
profile=${(j:.:)${parts[$i,${#parts}]}}
file=$ZSH_CUSTOM/profiles/$profile