FIX haskell bracket keys
This commit is contained in:
parent
073b77538f
commit
2e2be0ed3d
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue