dotfiles

🎜 Clone'em, tweak'em, stick'em in your $HOME 🎝
git clone https://git.kevinlegouguec.net/dotfiles
Log | Files | Refs | README

commit 5a0a511f3de3029c747ce32a6d7269788328a22f
parent 19d34b79fd48acb3db7609216923850ed857a80f
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Fri, 30 Dec 2022 15:06:49 +0100

Tweak .emacs comments

Diffstat:
M.emacs | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.emacs b/.emacs @@ -46,9 +46,6 @@ ;; ;; Same story with M-h (mark-paragraph) which gets re-bound by eg ;; markdown-mode and nxml-mode. -;; -;; NB: help and mark-defun are still accessible using H instead of h, -;; except in a terminal. (define-key input-decode-map (kbd "C-h") (kbd "DEL")) (define-key input-decode-map (kbd "C-M-h") (kbd "M-DEL")) @@ -596,9 +593,10 @@ (with-temp-buffer (call-process-region text nil "pandoc" nil t nil "--from" markup "--to" "html") - ;; TODO: could gui-set-selection help here? The docstring makes + ;; TODO: could `gui-set-selection' help here? The docstring makes ;; it sound like passing a value with a 'text/html property set to ;; the HTML string should work, but empirically it doesn't. + ;; Maybe look into `selection-converter-alist'. (call-process-region nil nil "xclip" nil nil nil "-selection" "clipboard" "-target" "text/html")))