sublimelsp / LSP-clangd

C/C++ support for Sublime's LSP plugin provided through clangd.
MIT License
43 stars 1 forks source link

Add option to apply all fix-its or add fix-on-save options #25

Closed fruffy closed 9 months ago

fruffy commented 9 months ago

Some Sublime LSP services have an option to apply all fixes on save or with a command, for example ESLint: https://github.com/sublimelsp/LSP-eslint?tab=readme-ov-file#faq

Is something like this also possible for clangd? How much work would it be to implement it?

LDAP commented 9 months ago

Code actions are provided by the server. The correct place to ask is here: https://github.com/clangd/clangd/issues

rwols commented 9 months ago

https://github.com/clangd/clangd/issues/1446

fruffy commented 9 months ago

Thanks for the quick reply!