about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-10-23 13:25:50 +0100
committerDavid Morgan <djm_uk@protonmail.com>2024-10-23 13:25:50 +0100
commita0aead9d4f48c9025971a8be26bcd2567bd1a6ef (patch)
tree8af6b7d4cf324005e753fd7ac38db5d96bd6e9ba /.emacs.d
parentee6e1c3aebee447d3bdd869f0f99a0f01fe23b85 (diff)
downloaddotfiles-a0aead9d4f48c9025971a8be26bcd2567bd1a6ef.tar.gz
Fix binding clash
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-misc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-misc.el b/.emacs.d/lisp/init-misc.el
index fde5c56..82c4264 100644
--- a/.emacs.d/lisp/init-misc.el
+++ b/.emacs.d/lisp/init-misc.el
@@ -64,8 +64,8 @@
           (kill-new curl-command)
           (message "curl command copied to clipboard.")))))
   :bind
-  ("C-c h" . restclient-call-saved-request)
-  (:map restclient-mode-map ("C-c M-h" . restclient-save-current))
+  ("C-c M-h" . restclient-call-saved-request)
+  (:map restclient-mode-map ("C-c h" . restclient-save-current))
   :mode (("\\.http\\'" . restclient-mode)))
 
 (use-package restclient-jq