summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;