summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJoão Távora <joaotavora@gmail.com>2023-04-29 20:47:24 +0100
committerJoão Távora <joaotavora@gmail.com>2023-04-29 23:31:29 +0100
commit30892cbd330ace125454a056ca86d85e2a860bf5 (patch)
treebe6de67e7d3246b5fafc4db33374ae69f334a33a /etc
parentc604cb6a8a5ac4ca1cfb5e839ca6d7ad1d77b5b8 (diff)
downloademacs-30892cbd330ace125454a056ca86d85e2a860bf5.tar.gz
Eglot: bump to 1.15
* lisp/progmodes/eglot.el (Version): Bump to 1.15 * etc/EGLOT-NEWS: 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 7369b3bf545..27796adef4b 100644
--- a/etc/EGLOT-NEWS
+++ b/etc/EGLOT-NEWS
@@ -18,6 +18,32 @@ to look up issue github#1234, go to
https://github.com/joaotavora/eglot/issues/1234.
+* Changes in Eglot 1.15 (29/4/2023)
+
+** Fix LSP "languageId" detection
+
+Many servers today support multiple languages, meaning they can handle
+more than one file type in the same connection. This relies on the
+client supplying a ':languageId' string. Previously, Eglot calculated
+this string based on an imperfect heuristic and was often wrong. See
+github#1206.
+
+** Fix problems with missing signature documentation (bug#62687)
+
+** Reworked 'eglot-imenu'
+
+Eglot's Imenu backend (used for M-x imenu among other extensions), has
+been reworked. Most newer servers respond to
+'textDocument/documentSymbol' with a vector of 'DocumentSymbol', not
+'SymbolInformation'. It's not worth it trying to make the two formats
+resemble each other. This also lays groundwork supporting a
+forthcoming "breadcrumb" feature of bug#58431.
+
+** New command 'eglot-update'
+
+This allows users to easily update to the latest version of Eglot.
+
+
* Changes in Eglot 1.14 (3/4/2023)
** Faster, more responsive completion