Difference between revision 3 and current revision
Summary: Rollback to 2008-09-05 00:16 UTC
No diff available.AutoMark makes you free from pushing marks.
Here is my sample setting.
(when (require 'auto-mark nil t)
(setq auto-mark-command-class-alist
'((anything . anything)
(goto-line . jump)
(indent-for-tab-command . ignore)
(undo . ignore)))
(setq auto-mark-command-classifiers
(list (lambda (command)
(if (and (eq command 'self-insert-command)
(eq last-command-char ? ))
'ignore))))
(global-auto-mark-mode 1))
I suggest to use VisibleMark with it.