pinwheel: Set helpful bindings in emacs

This commit is contained in:
Alexander Heldt
2023-09-09 11:26:51 +02:00
parent acd10f0ecc
commit 1c1c45b679

View File

@@ -265,14 +265,12 @@ https://github.com/oantolin/orderless
https://github.com/Wilfred/helpful https://github.com/Wilfred/helpful
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package helpful (use-package helpful
;; :custom
;; (counsel-describe-function-function #'helpful-callable)
;; (counsel-describe-variable-function #'helpful-variable)
:bind :bind
;; ([remap describe-function] . counsel-describe-function) ([remap describe-function] . helpful-callable)
([remap describe-command] . helpful-command) ([remap describe-command] . helpful-command)
;; ([remap describe-variable] . counsel-describe-variable) ([remap describe-variable] . helpful-variable)
([remap describe-key] . helpful-key)) ([remap describe-key] . helpful-key)
([remap describe-symbol] . helpful-symbol))
#+END_SRC #+END_SRC
** Company ** Company
https://company-mode.github.io/ https://company-mode.github.io/