Fork me on GitHub
#emacs
<
2016-02-13
>
daveliepmann18:02:45

Anybody know how to unset shift-option (aka alt, on a Mac) <left> in markdown-mode? I've been trying (eval-after-load 'markdown-mode (local-unset-key (kbd "M-S <left>"))) and (eval-after-load 'markdown-mode (define-key markdown-mode-map (kbd "M-S <left>") nil)) to no effect. 😕

daveliepmann18:02:43

I mean, it's a Saturday night, isn't everyone reconfiguring their Emacs?

malabarba23:02:17

You need to quote the form that goes in eval after load.

malabarba23:02:27

That might be it.

malabarba23:02:01

And I think the key has to be M-S-<left > (note the extra hyphen)