Browse Source

osx: fix rmdsstore function definition (#7443)

Igor Kapkov 5 years ago
parent
commit
2614b7ecdf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/osx/osx.plugin.zsh

+ 1 - 1
plugins/osx/osx.plugin.zsh

@@ -284,6 +284,6 @@ alias showfiles="defaults write com.apple.finder AppleShowAllFiles -bool true &&
 alias hidefiles="defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder"
 alias hidefiles="defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder"
 
 
 # Remove .DS_Store files recursively in a directory, default .
 # Remove .DS_Store files recursively in a directory, default .
-rmdsstore() {
+function rmdsstore() {
 	find "${@:-.}" -type f -name .DS_Store -delete
 	find "${@:-.}" -type f -name .DS_Store -delete
 }
 }