diff options
| author | Idir Lankri | 2023-04-14 15:52:24 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2023-04-18 14:17:25 +0300 |
| commit | 1456adf4248117b9889c6fa71f798ada2f45a3a4 (patch) | |
| tree | cfec94b8cba26907cff4a57fc05a418c0d736902 | |
| parent | 2f59595f5f4e86a791c425a6f9e2c1594d6813e4 (diff) | |
| download | emacs-1456adf4248117b9889c6fa71f798ada2f45a3a4.tar.gz emacs-1456adf4248117b9889c6fa71f798ada2f45a3a4.zip | |
; Eglot: fix a typo in a customization type
* lisp/progmodes/eglot.el (eglot-ignored-server-capabilities): Fix the
value associated with the tag "Go to declaration". (Bug#62849)
Copyright-paperwork-exempt: yes
| -rw-r--r-- | lisp/progmodes/eglot.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 4943b44107a..9b499b944cd 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el | |||
| @@ -1673,7 +1673,7 @@ under cursor." | |||
| 1673 | (const :tag "Go to definition" :definitionProvider) | 1673 | (const :tag "Go to definition" :definitionProvider) |
| 1674 | (const :tag "Go to type definition" :typeDefinitionProvider) | 1674 | (const :tag "Go to type definition" :typeDefinitionProvider) |
| 1675 | (const :tag "Go to implementation" :implementationProvider) | 1675 | (const :tag "Go to implementation" :implementationProvider) |
| 1676 | (const :tag "Go to declaration" :implementationProvider) | 1676 | (const :tag "Go to declaration" :declarationProvider) |
| 1677 | (const :tag "Find references" :referencesProvider) | 1677 | (const :tag "Find references" :referencesProvider) |
| 1678 | (const :tag "Highlight symbols automatically" :documentHighlightProvider) | 1678 | (const :tag "Highlight symbols automatically" :documentHighlightProvider) |
| 1679 | (const :tag "List symbols in buffer" :documentSymbolProvider) | 1679 | (const :tag "List symbols in buffer" :documentSymbolProvider) |