From 275bea568e307e6f9f75e0f26e0821b1f01d1c7b Mon Sep 17 00:00:00 2001 From: Michael Fiano Date: Thu, 28 Mar 2019 21:40:06 -0400 Subject: [PATCH] Added more bindings --- modules/lang/common-lisp/config.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/lang/common-lisp/config.el b/modules/lang/common-lisp/config.el index 1426966a2..44b31b7ba 100644 --- a/modules/lang/common-lisp/config.el +++ b/modules/lang/common-lisp/config.el @@ -148,7 +148,10 @@ bin/doom while packages at compile-time (not a runtime though)." '(sly-db-mode sly-inspector-mode sly-popup-buffer-mode sly-xref-mode) 'normal) (evil-define-key 'insert sly-mrepl-mode-map - [S-return] #'newline-and-indent) + [S-return] #'newline-and-indent + [backspace] #'sp-backward-delete-char + [up] (λ! () (evil-goto-line) (comint-previous-input 1)) + [down] (λ! () (evil-goto-line) (comint-next-input 1))) (evil-define-key 'normal sly-parent-map (kbd "C-t") #'sly-pop-find-definition-stack) (evil-define-key 'normal sly-db-mode-map