summaryrefslogtreecommitdiff
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
parent1df7dc5171abfe1eab3e95be964f61c5876198f1 (diff)
downloadalacritty-33db289f7fe31b5200317055899df6ec40bdfc6f.tar.gz
alacritty-33db289f7fe31b5200317055899df6ec40bdfc6f.zip
Fix libxkbcommon-devel package name for openSUSE
Fixes #5586.
-rw-r--r--INSTALL.md2
-rw-r--r--alacritty/src/config/monitor.rs2
-rw-r--r--alacritty_terminal/src/event_loop.rs2
-rw-r--r--alacritty_terminal/src/term/search.rs2
4 files changed, 4 insertions, 4 deletions
diff --git a/INSTALL.md b/INSTALL.md
index d8f6ef89..70171f1f 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -125,7 +125,7 @@ a `zypper` command that should install all of them. If something is
still found to be missing, please open an issue.
```sh
-zypper install cmake freetype-devel fontconfig-devel libxcb-devel libxkbcommon-dev
+zypper install cmake freetype-devel fontconfig-devel libxcb-devel libxkbcommon-devel
```
#### Slackware
diff --git a/alacritty/src/config/monitor.rs b/alacritty/src/config/monitor.rs
index 9d37172e..63f7549f 100644
--- a/alacritty/src/config/monitor.rs
+++ b/alacritty/src/config/monitor.rs
@@ -80,7 +80,7 @@ pub fn watch(mut paths: Vec<PathBuf>, event_proxy: EventLoopProxy<Event>) {
// Always reload the primary configuration file.
let event = Event::new(EventType::ConfigReload(paths[0].clone()), None);
let _ = event_proxy.send_event(event);
- }
+ },
_ => (),
}
}
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;