(save-some-buffers t)
(kill-emacs nil t))
- (defun re/push-mark-no-activate ()
- "Pushes `point' to `mark-ring' and does not activate the region.
+(defun re/push-mark-no-activate ()
+ "Pushes `point' to `mark-ring' and does not activate the region.
Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled.
Taken from https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode"
- (interactive)
- (push-mark (point) t nil)
- (message "Pushed mark to ring"))
+ (interactive)
+ (push-mark (point) t nil)
+ (message "Pushed mark to ring"))
(defun re/jump-to-mark ()
"Jumps to the local mark, respecting the `mark-ring' order.