[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] 1.3 6643310 16/26: Per #173: robustify previous fix against non-s
From: |
Christian Johansson |
Subject: |
[elpa] 1.3 6643310 16/26: Per #173: robustify previous fix against non-standard insertion bindings |
Date: |
Thu, 29 Apr 2021 15:09:15 -0400 (EDT) |
tag: 1.3
commit 6643310da16de8eeda9c385d0c2e83f70936a402
Author: João Távora <joaotavora@gmail.com>
Commit: João Távora <joaotavora@gmail.com>
Per #173: robustify previous fix against non-standard insertion bindings
* eglot.el (eglot--managed-mode): Manage post-self-insert-hook.
(eglot--last-inserted-char): New variable.
(eglot--post-self-insert-hook): Set it.
(eglot--before-change): Reset it.
(eglot--CompletionParams): Use it.
---
eglot.el | 27 +++++++++++++++++++--------
1 file changed, 19 insertions(+), 8 deletions(-)
diff --git a/eglot.el b/eglot.el
index 86db5ea..e4547c5 100644
--- a/eglot.el
+++ b/eglot.el
@@ -1052,6 +1052,7 @@ and just return it. PROMPT shouldn't end with a question
mark."
(add-hook 'xref-backend-functions 'eglot-xref-backend nil t)
(add-hook 'completion-at-point-functions #'eglot-completion-at-point nil t)
(add-hook 'change-major-mode-hook 'eglot--managed-mode-onoff nil t)
+ (add-hook 'post-self-insert-hook 'eglot--post-self-insert-hook nil t)
(add-function :before-until (local 'eldoc-documentation-function)
#'eglot-eldoc-function)
(add-function :around (local 'imenu-create-index-function) #'eglot-imenu)
@@ -1068,6 +1069,7 @@ and just return it. PROMPT shouldn't end with a question
mark."
(remove-hook 'xref-backend-functions 'eglot-xref-backend t)
(remove-hook 'completion-at-point-functions #'eglot-completion-at-point t)
(remove-hook 'change-major-mode-hook #'eglot--managed-mode-onoff t)
+ (remove-hook 'post-self-insert-hook 'eglot--post-self-insert-hook t)
(remove-function (local 'eldoc-documentation-function)
#'eglot-eldoc-function)
(remove-function (local 'imenu-create-index-function) #'eglot-imenu)
@@ -1383,12 +1385,18 @@ THINGS are either registrations or unregisterations."
(list :textDocument (eglot--TextDocumentIdentifier)
:position (eglot--pos-to-lsp-position)))
+(defvar-local eglot--last-inserted-char nil
+ "If non-nil, value of the last inserted character in buffer.")
+
+(defun eglot--post-self-insert-hook ()
+ "Set `eglot--last-inserted-char.'"
+ (setq eglot--last-inserted-char last-input-event))
+
(defun eglot--CompletionParams ()
(append
(eglot--TextDocumentPositionParams)
`(:context
- ,(if-let (trigger (and (eq last-command 'self-insert-command)
- (characterp last-input-event)
+ ,(if-let (trigger (and (characterp eglot--last-inserted-char)
(cl-find last-input-event
(eglot--server-capable :completionProvider
:triggerCharacters)
@@ -1406,15 +1414,18 @@ THINGS are either registrations or unregisterations."
(defvar-local eglot--change-idle-timer nil "Idle timer for didChange signals.")
(defun eglot--before-change (start end)
- "Hook onto `before-change-functions'.
-Records START and END, crucially convert them into
-LSP (line/char) positions before that information is
-lost (because the after-change thingy doesn't know if newlines
-were deleted/added)"
+ "Hook onto `before-change-functions'."
+ ;; Records START and END, crucially convert them into LSP
+ ;; (line/char) positions before that information is lost (because
+ ;; the after-change thingy doesn't know if newlines were
+ ;; deleted/added)
(when (listp eglot--recent-changes)
(push `(,(eglot--pos-to-lsp-position start)
,(eglot--pos-to-lsp-position end))
- eglot--recent-changes)))
+ eglot--recent-changes))
+ ;; Also, reset `eglot--last-inserted-char' which might be set later
+ ;; by `eglot--post-self-insert-hook'.
+ (setq eglot--last-inserted-char nil))
(defun eglot--after-change (start end pre-change-length)
"Hook onto `after-change-functions'.
- [elpa] 1.3 8a2008f 21/26: Warn about suspicious interface usage at compile-time, (continued)
- [elpa] 1.3 8a2008f 21/26: Warn about suspicious interface usage at compile-time, Christian Johansson, 2021/04/29
- [elpa] 1.3 3082a85 02/26: Fix #164: CodeAction command can be a Command object (#165), Christian Johansson, 2021/04/29
- [elpa] 1.3 7d41833 05/26: Per #52, #127: Improve performance of xref summary line collection, Christian Johansson, 2021/04/29
- [elpa] 1.3 9e7f370 11/26: Use eglot--dbind for destructuring, Christian Johansson, 2021/04/29
- [elpa] 1.3 c3d2000 26/26: * eglot.el (Version): Bump to 1.3, Christian Johansson, 2021/04/29
- [elpa] 1.3 dfa648d 24/26: Be lenient by default to unknown methods or notifications, Christian Johansson, 2021/04/29
- [elpa] 1.3 0c36b00 25/26: Close #180: Add preamble to comparison to lsp-mode.el, Christian Johansson, 2021/04/29
- [elpa] 1.3 f0bdf4c 20/26: Fix #144: Use eglot--dbind and eglot--lambda throughout, Christian Johansson, 2021/04/29
- [elpa] 1.3 0005dc8 22/26: Scratch/use elpa flymake (#178), Christian Johansson, 2021/04/29
- [elpa] 1.3 3a56470 17/26: Fix #164: handle CodeAction/Command polymorphism with eglot--dcase, Christian Johansson, 2021/04/29
- [elpa] 1.3 6643310 16/26: Per #173: robustify previous fix against non-standard insertion bindings,
Christian Johansson <=