yegappan / lsp

Language Server Protocol (LSP) plugin for Vim9
MIT License
447 stars 43 forks source link

Error in Sample Code for EFM Language Server on Wiki #502

Closed SotaYamaguchi closed 2 months ago

SotaYamaguchi commented 3 months ago

There is a mistake in the sample code for the EFM Language Server provided on the Wiki page. https://github.com/yegappan/lsp/wiki#efm-language-server

Incorrect code:

lintStdin: true,

Correct code:

lintStdin: v:true,

Please update the documentation to reflect the correct code. Thank you!

yegappan commented 2 months ago

Thanks for reporting this issue. I have updated the wiki page.