Emacs: Configure copy-as-format
Alan Pearce alan@alanpearce.uk
Wed, 14 Dec 2016 10:59:31 +0100
1 files changed, 18 insertions(+), 0 deletions(-)
jump to
M tag-emacs/emacs.d/init.org ā tag-emacs/emacs.d/init.org
@@ -2182,6 +2182,24 @@ (when (boundp 'x-select-request-type) (setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING))) #+END_SRC +*** Copy formatted code + +#+BEGIN_SRC emacs-lisp +(bind-key* "C-c w" (define-prefix-command 'copy-as-map)) +(use-package copy-as-format + :bind (("C-c C-w" . copy-as-format) + :map copy-as-map + ("b" . copy-as-format-bitbucket) + ("g" . copy-as-format-github) + ("h" . copy-as-format-hipchat) + ("w" . copy-as-format-html) + ("j" . copy-as-format-jira) + ("m" . copy-as-format-markdown) + ("s" . copy-as-format-slack))) +#+END_SRC + +** + ** Selection Iām quite used to deleting text by selecting it and typing. Emacs has