From f32c05db857c61fddb45b66d2ca1de2bd70b7db2 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Thu, 4 Aug 2022 19:11:31 -0500 Subject: Detect indent-style in `:set-language` (#3330) Indent style may change when choosing a language with `:set-language`. Line-endings most likely will not change, but `:set-language` should have a similar effect as reloading a file (`:reload`), plus the two are currently grouped in the implementation and line-ending detection is not particularly expensive.--- helix-term/src/commands/typed.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'helix-term/src') diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index dbf7cb24..ad4e7f4c 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -1254,6 +1254,7 @@ fn language( let doc = doc_mut!(cx.editor); doc.set_language_by_language_id(&args[0], cx.editor.syn_loader.clone()); + doc.detect_indent_and_line_ending(); let id = doc.id(); cx.editor.refresh_language_server(id); -- cgit v1.2.3-70-g09d2