]> git.eshelyaron.com Git - emacs.git/commit
Eglot: filter by prefix in narrow-scope eglot-code-actions
authorJoão Távora <joaotavora@gmail.com>
Mon, 1 Jan 2024 21:12:28 +0000 (15:12 -0600)
committerJoão Távora <joaotavora@gmail.com>
Mon, 1 Jan 2024 21:12:43 +0000 (15:12 -0600)
commit24741d25633084101ab697ba6e28f03e1cdc8b7a
treec9650866b9740585e52a34dd13acea626f09847c
parent6e2e34a5caa75a3430a1fb0d89900f9911c50436
Eglot: filter by prefix in narrow-scope eglot-code-actions

Github-reference: https://github.com/joaotavora/eglot/issues/847

Servers like typescript-language-server, when asked for {"only" :
"source.organizeImports"}, return actions with the
"source.organizeImports.ts" kind.  Eglot rejected these actions, but
according to the spec:

  Kinds are a hierarchical list of identifiers separated by `.` [...]
  The set of kinds is open.

So I guess we can use string-prefix-p

* lisp/progmodes/eglot.el (eglot-code-actions): Use string-prefix-p.
lisp/progmodes/eglot.el