elisp: bind C-M-i to helm-lisp-completion-at-point
This commit is contained in:
parent
48c5cf2a02
commit
47b79d434f
4
init.el
4
init.el
@ -469,12 +469,16 @@ of the key binding used to execute this command."
|
|||||||
(use-package paren-face
|
(use-package paren-face
|
||||||
:defer)
|
:defer)
|
||||||
|
|
||||||
|
;; I do not want completion in extra frame
|
||||||
|
(setq helm-show-completion-display-function #'helm-default-display-buffer)
|
||||||
|
|
||||||
(defun my-emacs-lisp-mode-hook-fn ()
|
(defun my-emacs-lisp-mode-hook-fn ()
|
||||||
(set (make-local-variable 'lisp-indent-function) #'lisp-indent-function)
|
(set (make-local-variable 'lisp-indent-function) #'lisp-indent-function)
|
||||||
(paredit-mode 1)
|
(paredit-mode 1)
|
||||||
(local-set-key (kbd "C-c S") (global-key-binding (kbd "M-s")))
|
(local-set-key (kbd "C-c S") (global-key-binding (kbd "M-s")))
|
||||||
(local-set-key (kbd "C-c C-z")
|
(local-set-key (kbd "C-c C-z")
|
||||||
(lambda () (interactive) (switch-to-buffer "*scratch*")))
|
(lambda () (interactive) (switch-to-buffer "*scratch*")))
|
||||||
|
(local-set-key (kbd "C-M-i") #'helm-lisp-completion-at-point)
|
||||||
(show-paren-mode 1)
|
(show-paren-mode 1)
|
||||||
(paren-face-mode))
|
(paren-face-mode))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user