aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-11-08 15:30:34 +0000
committerBlaž Hrastnik2021-11-08 15:30:34 +0000
commit549cdee56159bed4266990ae66591dd6299293d4 (patch)
treec70b573b9b4e44dc978b955f44e0c23160012a75 /helix-view
parent77dbbc73f9c9b6599bc39b18625285685fe2e4b1 (diff)
Refactor shebang detection to reuse the loaded buffer
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/document.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs
index a68ab759..351ad05a 100644
--- a/helix-view/src/document.rs
+++ b/helix-view/src/document.rs
@@ -496,7 +496,7 @@ impl Document {
if let Some(path) = &self.path {
let language_config = config_loader
.language_config_for_file_name(path)
- .or_else(|| config_loader.language_config_for_shebang(path));
+ .or_else(|| config_loader.language_config_for_shebang(self.text()));
self.set_language(theme, language_config);
}
}