From 2e2be0ed3d68cca09a963283fb0c5fcdf4d64a6c Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Wed, 15 Apr 2020 19:12:06 -0400 Subject: [PATCH] FIX haskell bracket keys --- etc/conf.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/etc/conf.org b/etc/conf.org index 908a498..fd6f5fe 100644 --- a/etc/conf.org +++ b/etc/conf.org @@ -3622,10 +3622,12 @@ REPL. If no SEND-INPUT-CMD then `comint-send-input' is used." Not to be confused with =interactive-haskell-mode= which is part of the editing buffer #+BEGIN_SRC emacs-lisp (evil-define-key '(normal insert) haskell-interactive-mode-map - (kbd "[[") #'haskell-interactive-mode-prompt-previous - (kbd "]]") #'haskell-interactive-mode-prompt-next (kbd "C-k") #'haskell-interactive-mode-history-previous (kbd "C-j") #'haskell-interactive-mode-history-next) + +(evil-define-key 'normal haskell-interactive-mode-map + (kbd "[[") #'haskell-interactive-mode-prompt-previous + (kbd "]]") #'haskell-interactive-mode-prompt-next) #+END_SRC **** helm I like tab completion...regardless of what the helm zealots say.