mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 12:27:42 +03:00
Use filter_map rather than flat_map
This commit is contained in:
parent
2f4a9fea03
commit
e22dbf102f
1 changed files with 1 additions and 1 deletions
|
@ -723,7 +723,7 @@ impl Syntax {
|
|||
let mut layers = self
|
||||
.layers
|
||||
.iter()
|
||||
.flat_map(|(_, layer)| {
|
||||
.filter_map(|(_, layer)| {
|
||||
// Reuse a cursor from the pool if available.
|
||||
let mut cursor = PARSER.with(|ts_parser| {
|
||||
let highlighter = &mut ts_parser.borrow_mut();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue