;;; -*- lexical-binding: t -*- ;; ;; this file: ;; https://dataswamp.org/~incal/emacs-init/yank.el (setq yank-excluded-properties t) (defun yank-pop-back (&optional times) (interactive "p") (yank-pop (* times -1)) ) (provide 'yank)