Browse Source

Fix whitespace

That's what I get for using GitHub text editor and not checking tabs.
Ryan Winograd 12 years ago
parent
commit
4c8bba57ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/last-working-dir/last-working-dir.plugin.zsh

+ 1 - 1
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"
 }