Add a command to clear flycheck diagnostics

This commit is contained in:
Lukas Wirth 2022-12-17 23:43:26 +01:00
parent d8ddde27f9
commit cf8d89e46b
7 changed files with 64 additions and 2 deletions

View file

@ -792,6 +792,12 @@ export function cancelFlycheck(ctx: CtxInit): Cmd {
};
}
export function clearFlycheck(ctx: CtxInit): Cmd {
return async () => {
await ctx.client.sendNotification(ra.clearFlycheck);
};
}
export function runFlycheck(ctx: CtxInit): Cmd {
return async () => {
const editor = ctx.activeRustEditor;