Emacs Sux Too
Tweet
finder on OS X does indeed provide a hidden option to turn off .DS_Store generation on network drives. Usually I'm turning that off using a tool called TinkerTool (google), but that tool does nothing but setting the hidden preference in the finders properties (don't ask me which one though - just use that tool).
Philip
Considering how much more efficient I've been on my various mac laptops of the past five years I find señor Rethan's ballache about extra files absurd. How much pain does a windoze box require to get anything done? And as for a linux desktop? seriously now. I gave up four years of linux-only desktop for MacOS X and never looked back. I'd be hard pressed to find any reason to go back to linux. Ubuntu versus debian, GTFO.
You want to get rid of the .DS_Store folder, run a one line 'find' for fucks sake.
Comments are disabled for this post.
Christian Roy Says:
These files have saved my ass a number of times. I put up with them.
I can exclude these files easilly. When I use "find" I use : find /path --exclude "*~" --exclude ".#*#"
When I use "ls" I use: ls -B
You can configure emacs to store the backup files *~ into a hidden .backup directory by using backup-dir.el :
Download it: http://www.northbound-train.com/emacs-hosted/backup-dir.el
Use it:
; all backups (*~ files) are in the hidden directory .backup
(require 'backup-dir)
(setq bkup-backup-directory-info
'((t "~/.backup/" full-path prepend-name search-upward)))
Kyle also pointed out something similar on http://ubuntu.wordpress.com/2006/01/26/tilde-backup-file-cleanup/#comment-679 :
;; create a backup file directory
(defun make-backup-file-name (file)
(concat “~/.emacs.backups/” (file-name-nondirectory file) “~”))
If you really want to disable backup and auto save, try:
http://anirudhs.chaosnet.org/blog/2005.01.21.html