if you are methodic enough you can just create a script in /usr/bin
that cleans temps, backs and other rotten files. Or easier yet, you
can alias to something like clean_emacs to something like:

find . -name "*~" | xargs rm -f
find . -name "#*#" | xargs rm -f

of course you can make this more efficient but it does the work and it's simple.

just before submitting the day's work in SVN I just run this script
and make sure I have pruned all these files.

On 8/28/07, Jonathan Rockway <[EMAIL PROTECTED]> wrote:
> Kieren Diment wrote:
> > Applied (changeset 6741 and 6742 - don't ask) , thanks :-)
> >
> > On 27/08/07, Dave Rolsky <[EMAIL PROTECTED]> wrote:
> >
> >> When you're editing a buffer in emacs, it will create a temporary symlink
> >> in the same directory of the file in the form ".#<filename>".
> Thanks kd++ and autarch++ :)  This has been an open issue for over a
> year because we've been waiting for users to compile a list for every
> editor and patch MPO accordingly.  I only use emacs, so all I could
> provide was similar to Dave's patch.  With this applied, I am happy :)
>
> Users of other editors: we weren't kidding when we asked you for regexes
> that exclude your editor's cruft files.  They all do it, but I don't
> have any of them so I don't know what the files are.  Please send data.
>
> Regards,
> Jonathan Rockway
>
>
> _______________________________________________
> List: Catalyst@lists.rawmode.org
> Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst
> Searchable archive: http://www.mail-archive.com/catalyst@lists.rawmode.org/
> Dev site: http://dev.catalyst.perl.org/
>
>
>

_______________________________________________
List: Catalyst@lists.rawmode.org
Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.rawmode.org/
Dev site: http://dev.catalyst.perl.org/

Reply via email to