Browse Source

Remove markdown-electric-backquote keybind

master
10sr 5 years ago
parent
commit
32a86f14f8
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      emacs.el

+ 3
- 1
emacs.el View File

@@ -1542,7 +1542,9 @@ found, otherwise returns nil."
(when (autoload-eval-lazily 'markdown-mode
'(markdown-mode gfm-mode)
(defvar gfm-mode-map (make-sparse-keymap))
(define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline))
(define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline)
(define-key gfm-mode-map "`" nil) ;; markdown-electric-backquote
)
(add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
(set-variable 'markdown-command (or (executable-find "markdown")
(executable-find "markdown.pl")


Loading…
Cancel
Save