mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
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.
This commit is contained in:
parent
ee1214d6e5
commit
f32c05db85
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue