Emacs: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

25 October 2023

28 August 2023

  • curprev 16:2016:20, 28 August 2023RobertBushman talk contribs 310 bytes +310 Created page with "Category:Hacking = Yank from Primary Selection = In Linux, the "highlight" buffer is called the Primary Selection. <syntaxhighlight lang="lisp"> (defun yank-primary-selection () (interactive) (insert (x-get-selection 'PRIMARY))) (global-set-key (kbd "M-y") 'yank-primary-selection) </syntaxhighlight>"