TranslateProject/sources/tech/20181113 Eldoc Goes Global.md
darksun 68b7a75f85 选题: 20181113 Eldoc Goes Global
sources/tech/20181113 Eldoc Goes Global.md
2019-09-01 19:48:22 +08:00

46 lines
1.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[#]: collector: (lujun9972)
[#]: translator: ( )
[#]: reviewer: ( )
[#]: publisher: ( )
[#]: url: ( )
[#]: subject: (Eldoc Goes Global)
[#]: via: (https://emacsredux.com/blog/2018/11/13/eldoc-goes-global/)
[#]: author: (Bozhidar Batsov https://emacsredux.com)
Eldoc Goes Global
======
I recently noticed that Emacs 25.1 had added a global variant of the popular `eldoc-mode`, called `global-eldoc-mode`. Whats more - unlike `eldoc-mode`, `global-eldoc-mode` is enabled by default!
This means that you can get rid of all the code in your Emacs config that was wiring up `eldoc-mode` for major modes that support it:
```
;; That code is now redundant
(add-hook 'emacs-lisp-mode-hook #'eldoc-mode)
(add-hook 'ielm-mode-hook #'eldoc-mode)
(add-hook 'cider-mode-hook #'eldoc-mode)
(add-hook 'cider-repl-mode-hook #'eldoc-mode)
```
There are [some reports][1] that `global-eldoc-mode` is causing performance issues in modes that dont support it. Ive never experienced this myself, but if you want to disable it you can simply do so like this:
```
(global-eldoc-mode -1)
```
Now its time to clean up my config! Deleting code always feels so good!
--------------------------------------------------------------------------------
via: https://emacsredux.com/blog/2018/11/13/eldoc-goes-global/
作者:[Bozhidar Batsov][a]
选题:[lujun9972][b]
译者:[译者ID](https://github.com/译者ID)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://emacsredux.com
[b]: https://github.com/lujun9972
[1]: https://emacs.stackexchange.com/questions/31414/how-to-globally-disable-eldoc