diff options
author | JSDurand <mmemmew@gmail.com> | 2022-02-18 15:39:45 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2022-02-18 15:39:45 +0800 |
commit | b2717b24534ddd3f9ca302f75f091c9bc15c21b0 (patch) | |
tree | de0aa6f327b8bd6d85b5769a8ea06db65c4694c5 | |
parent | c85111adaa0ff2220238d75f4c17ed05f055473f (diff) |
view: add a binding to `durand-open-object'
Eglot-mode binds C-c o for some reason (I thought bindings like C-c X,
where X is a letter are reserved for the users). Instead of asking
the authors of eglot why they did that or fighting eglot by
re-binding, I am too lazy and just add a new binding to my own
function.
-rw-r--r-- | view-conf.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/view-conf.el b/view-conf.el index 5e6b5aa..d7ceeee 100644 --- a/view-conf.el +++ b/view-conf.el @@ -228,6 +228,7 @@ options to choose from." ;;; C-c o => 3 111 (define-key global-map (vector 3 111) #'durand-open-object) +(define-key global-map (vector ?\H-o) #'durand-open-object) ;;; Convert downloaded videos from youtube to the URL again and copy ;;; the result. |