Search Results

2
votes

Regex replacement with Emacs

Try something like this \(foo[1-4]\.txt\) …
0
votes

Emacs: Don’t create #these# files when not saving modified buffer

I would advice you to use something like: (defvar backup-dir "~/.emacs.d/backups/") (setq backup-directory-alist (list (cons "." backup-dir))) This way you can ha …