summaryrefslogtreecommitdiffstats
path: root/alacritty_terminal
diff options
context:
space:
mode:
authorDiego Garza <diego.gt.rh@gmail.com>2021-11-02 15:32:53 -0600
committerGitHub <noreply@github.com>2021-11-02 21:32:53 +0000
commit33db289f7fe31b5200317055899df6ec40bdfc6f (patch)
tree2bb7a5f72920b3c12bd3f9975457481fdc40be69 /alacritty_terminal
parent1df7dc5171abfe1eab3e95be964f61c5876198f1 (diff)
Fix libxkbcommon-devel package name for openSUSE
Fixes #5586.
Diffstat (limited to 'alacritty_terminal')
-rw-r--r--alacritty_terminal/src/event_loop.rs2
-rw-r--r--alacritty_terminal/src/term/search.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/alacritty_terminal/src/event_loop.rs b/alacritty_terminal/src/event_loop.rs
index 36392581..4bf0965e 100644
--- a/alacritty_terminal/src/event_loop.rs
+++ b/alacritty_terminal/src/event_loop.rs
@@ -407,7 +407,7 @@ where
break 'event_loop;
}
}
- }
+ },
_ => (),
}
}
diff --git a/alacritty_terminal/src/term/search.rs b/alacritty_terminal/src/term/search.rs
index ff6060af..08de602f 100644
--- a/alacritty_terminal/src/term/search.rs
+++ b/alacritty_terminal/src/term/search.rs
@@ -291,7 +291,7 @@ impl<T> Term<T> {
&& iter.point().column < self.last_column() =>
{
iter.next();
- }
+ },
Direction::Right if cell.flags.contains(Flags::LEADING_WIDE_CHAR_SPACER) => {
if let Some(Indexed { cell: new_cell, .. }) = iter.next() {
*cell = new_cell;