]> git.eshelyaron.com Git - emacs.git/commit
Eglot: fix textDocument/onTypeFormatting for 'newline' command
authorJoão Távora <joaotavora@gmail.com>
Thu, 20 Jul 2023 10:02:12 +0000 (05:02 -0500)
committerJoão Távora <joaotavora@gmail.com>
Thu, 20 Jul 2023 10:08:18 +0000 (05:08 -0500)
commit7ff41bf8ed8439c949af4cdd3ae8d01c8cdf997f
treebd87ba6d79f2b0342dc72bbeab5f2c0fc7152b30
parente2cc16fbd0d16e6c0ff59221af49e3d4113500cd
Eglot: fix textDocument/onTypeFormatting for 'newline' command

In the newline command, last-input-event is 13 (carriage return), but
most, if not all, language servers that support
documentOnTypeFormattingProvider expect 10 (linefeed) to be the
trigger, so convert 13 to 10 for the purposes of the
textDocument/onTypeFormatting request.

Also make this common edit silent in the mode-line/messages.

* lisp/progmodes/eglot.el (eglot--post-self-insert-hook): Convert
linefeed to carriage return.
(eglot-format): Pass SILENT to eglot--apply-text-edits.
(eglot--apply-text-edits): Take new optional SILENT arg.

* etc/EGLOT-NEWS: Mention change
etc/EGLOT-NEWS
lisp/progmodes/eglot.el