;;; my-buffers.el --- Functions related to buffer manipulations ;;; Commentary: ;;; Code: (defun my/copy-whole-buffer () "Select the buffer and copy it." (interactive) (save-excursion (mark-whole-buffer) (copy-region-as-kill 1 (buffer-size)))) (provide 'my-buffers) ;;; my-buffers.el ends here