diff options
author | Ryan Winograd <ryan@thewinograds.com> | 2013-03-13 22:51:12 -0500 |
---|---|---|
committer | Ryan Winograd <ryan@thewinograds.com> | 2013-03-13 22:51:14 -0500 |
commit | 4c8bba57acb0f64edde89321d5d6cbc3a5226cac (patch) | |
tree | 93740c5c7cd37ff089b76245aaddb7cde5cb4064 /plugins/last-working-dir | |
parent | 1cfd813f796e4472575daf4b51cd816bacc833e0 (diff) | |
download | zsh-4c8bba57acb0f64edde89321d5d6cbc3a5226cac.tar.gz zsh-4c8bba57acb0f64edde89321d5d6cbc3a5226cac.tar.bz2 zsh-4c8bba57acb0f64edde89321d5d6cbc3a5226cac.zip |
Fix whitespace
That's what I get for using GitHub text editor and not checking tabs.
Diffstat (limited to 'plugins/last-working-dir')
-rw-r--r-- | plugins/last-working-dir/last-working-dir.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/last-working-dir/last-working-dir.plugin.zsh b/plugins/last-working-dir/last-working-dir.plugin.zsh index 4903616e3..ccf0f5b22 100644 --- a/plugins/last-working-dir/last-working-dir.plugin.zsh +++ b/plugins/last-working-dir/last-working-dir.plugin.zsh @@ -9,7 +9,7 @@ local cache_file="$ZSH/cache/last-working-dir" # Updates the last directory once directory is changed. function chpwd() { - # Use >! in case noclobber is set to avoid "file exists" error + # Use >! in case noclobber is set to avoid "file exists" error echo "$PWD" >! "$cache_file" } |