Disable "Tags" prompt in OS 10.9 Save dialog
In Mavericks, the Save dialog now offers the ability to add Tags to the file you're saving:
Supposing I want to remove this prompt, likely by running a shell command involving defaults write com.apple.finder
. How do I do so?
Solution 1:
When parsing all .plist
files in ~/Library/preferences
. I don't find any options that would match your request.
If you want to try it yourself, here are the commands I used :
Convert all plist
to xml text files (because some of them (are|can be) binary files) :find . -name "*.plist" -exec plutil -convert xml1 "{}" \;
search the files for tag
: grep -rie "<key>.*tag.*</key>" .