Helm/SLIME: Fix the "M-s f" binding to helm-comint-prompts-all

master
Pierre Neidhardt 2019-03-19 10:12:45 +01:00
parent 9577269dcb
commit 2580cf2b40
1 changed files with 1 additions and 3 deletions

View File

@ -151,12 +151,10 @@
(with-eval-after-load 'slime
(when (require 'helm-slime nil t)
(with-eval-after-load 'slime-repl
(when (require 'company nil t)
(add-hook 'slime-repl-mode-hook 'company-mode))
(defun ambrevar/helm/slime-set-keys ()
(define-key slime-repl-mode-map (kbd "M-p") 'helm-slime-repl-history)
(define-key slime-repl-mode-map (kbd "M-s") nil)
(define-key slime-repl-mode-map (kbd "M-s f") 'helm-comint-input-ring)
(define-key slime-repl-mode-map (kbd "M-s f") 'helm-comint-prompts-all)
(define-key slime-autodoc-mode-map (kbd "C-c C-d C-a") 'helm-slime-apropos)
(define-key slime-repl-mode-map (kbd "C-c C-x c") 'helm-slime-list-connections)
(define-key slime-mode-map (kbd "M-<tab>") 'helm-slime-complete)