From 37013ce0e19f62545d5b6210590a9637d3792142 Mon Sep 17 00:00:00 2001 From: Oliver Davies <oliver@oliverdavies.uk> Date: Tue, 3 Dec 2019 09:39:47 +0000 Subject: [PATCH] Split cdpath onto multiple lines --- tag-zsh/zsh_profile.d/navigation.zsh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tag-zsh/zsh_profile.d/navigation.zsh b/tag-zsh/zsh_profile.d/navigation.zsh index 3ae05254..32766d09 100644 --- a/tag-zsh/zsh_profile.d/navigation.zsh +++ b/tag-zsh/zsh_profile.d/navigation.zsh @@ -1,2 +1,7 @@ setopt auto_cd -cdpath=($HOME $HOME/Code $HOME/Code/clients $HOME/Code/os) +cdpath=( + $HOME/Code \ + $HOME/Code/clients \ + $HOME/Code/os \ + $HOME +)