Compare commits

...

3 Commits

Author SHA1 Message Date
RoloEdits a6888c1cb7
Merge 30394d406d into 4281228da3 2025-07-24 14:36:52 -03:00
Valtteri Koskivuori 4281228da3
fix(queries): Fix filesystem permissions for snakemake (#14061) 2025-07-24 13:09:40 -04:00
rolo 30394d406d feat(lsp): sort diagnostic picker by severity 2025-06-20 16:12:40 -07:00
7 changed files with 7 additions and 0 deletions

View File

@ -231,6 +231,13 @@ fn diag_picker(
} }
} }
flat_diag.sort_by(|a, b| {
a.diag
.severity
.unwrap_or(lsp::DiagnosticSeverity::HINT)
.cmp(&b.diag.severity.unwrap_or(lsp::DiagnosticSeverity::HINT))
});
let styles = DiagnosticStyles { let styles = DiagnosticStyles {
hint: cx.editor.theme.get("hint"), hint: cx.editor.theme.get("hint"),
info: cx.editor.theme.get("info"), info: cx.editor.theme.get("info"),

0
runtime/queries/snakemake/LICENSE 100755 → 100644
View File

View File

View File

View File

View File

View File