Added c-eldoc-mode
This commit is contained in:
parent
414b3be1ae
commit
06229f528e
2 changed files with 12 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,3 +5,4 @@ smex-items
|
|||
recentf
|
||||
transient
|
||||
ido.last
|
||||
config.el
|
||||
|
|
11
config.org
11
config.org
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue