Added c-eldoc-mode

This commit is contained in:
qorg11 2020-07-09 21:36:16 +02:00
parent 414b3be1ae
commit 06229f528e
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View file

@ -5,3 +5,4 @@ smex-items
recentf
transient
ido.last
config.el

View file

@ -355,6 +355,17 @@ Including indent-buffer, which should not be called automatically on save."
#+BEGIN_SRC emacs-lisp
(defalias 'perl-mode 'cperl-mode)
#+END_SRC
*** C
This use c-eldoc mode so it prints the function's prototype in the
minibuffer. Which is very useful since Irony works when it wants
to.
#+BEGIN_SRC emacs-lisp
(use-package c-eldoc
:ensure t
:init
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
#+END_SRC
** Beacon mode
's cool