FIX haskell bracket keys

This commit is contained in:
Nathan Dwarshuis 2020-04-15 19:12:06 -04:00
parent 073b77538f
commit 2e2be0ed3d
1 changed files with 4 additions and 2 deletions

View File

@ -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 Not to be confused with =interactive-haskell-mode= which is part of the editing buffer
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(evil-define-key '(normal insert) haskell-interactive-mode-map (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-k") #'haskell-interactive-mode-history-previous
(kbd "C-j") #'haskell-interactive-mode-history-next) (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 #+END_SRC
**** helm **** helm
I like tab completion...regardless of what the helm zealots say. I like tab completion...regardless of what the helm zealots say.