summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJoão Távora <joaotavora@gmail.com>2023-04-03 00:00:18 +0100
committerJoão Távora <joaotavora@gmail.com>2023-04-03 00:00:18 +0100
commitf886ae5cf07bb40ad3fd0262942bdc74efca0277 (patch)
treee24a0d3cf574248ed981dcdadfe0a7598500cfe2 /etc
parentf2357df91f0262949618bd4da571d3267c1b1dfa (diff)
downloademacs-f886ae5cf07bb40ad3fd0262942bdc74efca0277.tar.gz
; * etc/EGLOT-NEWS (Upcoming 1.14): Update.
Diffstat (limited to 'etc')
-rw-r--r--etc/EGLOT-NEWS26
1 files changed, 26 insertions, 0 deletions
diff --git a/etc/EGLOT-NEWS b/etc/EGLOT-NEWS
index 09772a1e71a..2872cdd05cf 100644
--- a/etc/EGLOT-NEWS
+++ b/etc/EGLOT-NEWS
@@ -39,6 +39,32 @@ run into problems, disable this mechanism like so:
(add-hook 'c-common-mode-hook
(lambda () (setq-local eglot-cache-session-completions nil)))
+** At-point documentation less obtrusive in echo area
+
+Eglot takes advantage of new features of ElDoc to separate short
+documentation strings from large ones, sending the former to be shown in
+the ElDoc's echo area and the latter to be shown in other outlets,
+such as the *eldoc* buffer obtainable with 'C-h .'.
+
+** New variable 'eglot-prefer-plaintext'
+
+Customize this to t to opt-in to docstrings in plain text instead of
+Markdown.
+
+(bug#61373)
+
+** Progress indicators inhabit the mode-line by default
+
+To switch to the echo area, customize 'eglot-report-progress' to
+'messages'. To switch off progress reporting completely, set to nil.
+
+** Snippet support is easier to enable
+
+The user needn't manually activate 'yas-minor-mode' or
+'yas-global-mode'. If YASnippet is installed and the server supports
+snippets, it is used automatically, unless the symbol 'yasnippet' has
+been added to 'eglot-stay-out-of'.
+
* Changes in Eglot 1.13 (15/03/2023)