Skip to content

Instantly share code, notes, and snippets.

@zoek1
Created July 10, 2012 07:36
Show Gist options
  • Save zoek1/3081835 to your computer and use it in GitHub Desktop.
Save zoek1/3081835 to your computer and use it in GitHub Desktop.
Selecciona todo el contenido del buffer actual en #emacs.
(defun Seleccionar-todo-Buffer ()
"Selecciona todo el contenido
del buffer actual"
(interactive)
(push-mark (point))
(push-mark (point-max))
(goto-char (point-min)))
(global-set-key (kbd "C-SPC") 'Seleccionar-todo-buffer)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment