From a7f27504ae61a485f0033f9c29ab8d7b3a3af5e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Mon, 1 Dec 2025 15:05:06 -0700 Subject: [PATCH] feat(emacs): handle keybind --- modules/home/users/msyds/emacs/lisp/syd/handle.el | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/home/users/msyds/emacs/lisp/syd/handle.el b/modules/home/users/msyds/emacs/lisp/syd/handle.el index 0c6c9e7..2ba5ddb 100755 --- a/modules/home/users/msyds/emacs/lisp/syd/handle.el +++ b/modules/home/users/msyds/emacs/lisp/syd/handle.el @@ -89,6 +89,17 @@ (message "Couldn't open a REPL for %S" (substring-no-properties identifier)))) + +;;; Keybinds + +(general-def + :states '(motion normal) + "K" #'syd-handle-docs*) + +(general-def + :prefix-map 'syd-leader-open-map + "r" #'syd-handle-repl*) + (provide 'syd/handle)