mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 12:27:42 +03:00
fix: map_err()? instead of unwrap (#3826)
This commit is contained in:
parent
800a490676
commit
16b9a1841f
1 changed files with 4 additions and 1 deletions
|
@ -985,7 +985,9 @@ impl LanguageLayer {
|
|||
}
|
||||
|
||||
fn parse(&mut self, parser: &mut Parser, source: &Rope) -> Result<(), Error> {
|
||||
parser.set_included_ranges(&self.ranges).unwrap();
|
||||
parser
|
||||
.set_included_ranges(&self.ranges)
|
||||
.map_err(|_| Error::InvalidRanges)?;
|
||||
|
||||
parser
|
||||
.set_language(self.config.language)
|
||||
|
@ -1135,6 +1137,7 @@ pub struct Highlight(pub usize);
|
|||
pub enum Error {
|
||||
Cancelled,
|
||||
InvalidLanguage,
|
||||
InvalidRanges,
|
||||
Unknown,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue