We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.to_string()
format!(...)
1 parent 739673c commit 7a04410Copy full SHA for 7a04410
crates/codebook-lsp/src/lsp.rs
@@ -261,12 +261,12 @@ impl LanguageServer for Backend {
261
}));
262
}
263
actions.push(CodeActionOrCommand::CodeAction(CodeAction {
264
- title: format!("Add current file to ignore list"),
+ title: "Add current file to ignore list".to_string(),
265
kind: Some(CodeActionKind::QUICKFIX),
266
diagnostics: None,
267
edit: None,
268
command: Some(Command {
269
270
command: CodebookCommand::IgnoreFile.into(),
271
arguments: Some(vec![params.text_document.uri.to_string().into()]),
272
}),
0 commit comments