You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LSP provides a way of applying fix for diagnostics automatically. User selects a suggested fix (code action) for a diagnostic, and then LSP server sends the edits we need to apply to fix it.
Right now we manually apply the source.organizeImports code action (goimports for Go) every time we format a file, but we should support other code actions triggered from a diagnostic (e.g. quickfix).
Main challenge of implementing this would be figuring out a good UI.
The text was updated successfully, but these errors were encountered:
LSP provides a way of applying fix for diagnostics automatically. User selects a suggested fix (code action) for a diagnostic, and then LSP server sends the edits we need to apply to fix it.
Right now we manually apply the
source.organizeImports
code action (goimports
for Go) every time we format a file, but we should support other code actions triggered from a diagnostic (e.g.quickfix
).Main challenge of implementing this would be figuring out a good UI.
The text was updated successfully, but these errors were encountered: