1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-10-13 05:16:48 -04:00

Fix spelling errors

This commit is contained in:
Josh Soref 2024-05-24 13:32:11 -04:00 committed by GitHub
parent a89d4f50dc
commit cacdb5bb3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 16 additions and 16 deletions

View file

@ -25,7 +25,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its
- While terminal in mouse mode, mouse bindings that used the shift modifier and - While terminal in mouse mode, mouse bindings that used the shift modifier and
had multiple actions only performed the first action had multiple actions only performed the first action
- Leaking FDs when closing windows on Unix systems - Leaking FDs when closing windows on Unix systems
- Config emitting errors for non-existent import paths - Config emitting errors for nonexistent import paths
- Kitty keyboard protocol reporting shifted key codes - Kitty keyboard protocol reporting shifted key codes
## 0.13.2 ## 0.13.2
@ -318,7 +318,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its
- Terminal not exiting sometimes after closing all windows on macOS - Terminal not exiting sometimes after closing all windows on macOS
- CPU usage spikes due to mouse movements for unfocused windows on X11/Windows - CPU usage spikes due to mouse movements for unfocused windows on X11/Windows
- First window on macOS not tabbed with system prefer tabs setting - First window on macOS not tabbed with system prefer tabs setting
- Window being treaten as focused by default on Wayland - Window being treated as focused by default on Wayland
### Removed ### Removed
@ -342,7 +342,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its
- OSC 104 not clearing colors when second parameter is empty - OSC 104 not clearing colors when second parameter is empty
- Builtin font lines not contiguous when `font.offset` is used - Builtin font lines not contiguous when `font.offset` is used
- `font.glyph_offset` is no longer applied on builtin font - `font.glyph_offset` is no longer applied on builtin font
- Buili-in font arcs alignment - Built-in font arcs alignment
- Repeated permission prompts on M1 macs - Repeated permission prompts on M1 macs
- Colors being slightly off when using `colors.transparent_background_colors` - Colors being slightly off when using `colors.transparent_background_colors`
@ -674,7 +674,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its
- Reflow of cursor during resize - Reflow of cursor during resize
- Cursor color escape ignored when its color is set to inverted in the config - Cursor color escape ignored when its color is set to inverted in the config
- Fontconfig's `autohint` and `hinting` options being ignored - Fontconfig's `autohint` and `hinting` options being ignored
- Ingoring of default FreeType properties - Ignoring of default FreeType properties
- Alacritty crashing at startup when the configured font does not exist - Alacritty crashing at startup when the configured font does not exist
- Font size rounding error - Font size rounding error
- Opening URLs while search is active - Opening URLs while search is active
@ -882,7 +882,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its
- Block URL highlight while a selection is active - Block URL highlight while a selection is active
- Bindings for Alt + F1-F12 - Bindings for Alt + F1-F12
- Discard scrolling region escape with bottom above top - Discard scrolling region escape with bottom above top
- Opacity always applying to cells with their background color matching the teriminal background - Opacity always applying to cells with their background color matching the terminal background
- Allow semicolons when setting titles using an OSC - Allow semicolons when setting titles using an OSC
- Background always opaque on X11 - Background always opaque on X11
- Skipping redraws on PTY update - Skipping redraws on PTY update
@ -952,7 +952,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its
### Fixed ### Fixed
- Double-width characters in URLs only being highlit on the left half - Double-width characters in URLs only being highlighted on the left half
- PTY size not getting updated when message bar is shown - PTY size not getting updated when message bar is shown
- Text Cursor disappearing - Text Cursor disappearing
- Incorrect positioning of zero-width characters over double-width characters - Incorrect positioning of zero-width characters over double-width characters

View file

@ -34,7 +34,7 @@ introduced the regression helps out a lot.
## Patches / Pull Requests ## Patches / Pull Requests
All patches have to be sent on Github as [pull requests](https://github.com/alacritty/alacritty/pulls). All patches have to be sent on GitHub as [pull requests](https://github.com/alacritty/alacritty/pulls).
If you are looking for a place to start contributing to Alacritty, take a look at the If you are looking for a place to start contributing to Alacritty, take a look at the
[help wanted](https://github.com/alacritty/alacritty/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) [help wanted](https://github.com/alacritty/alacritty/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)

View file

@ -499,7 +499,7 @@ impl<'de> Deserialize<'de> for HintContent {
// Require at least one of hyperlinks or regex trigger hint matches. // Require at least one of hyperlinks or regex trigger hint matches.
if content.regex.is_none() && !content.hyperlinks { if content.regex.is_none() && !content.hyperlinks {
return Err(M::Error::custom( return Err(M::Error::custom(
"Config error: At least on of the hint's regex or hint's hyperlinks must \ "Config error: At least one of the hint's regex or hint's hyperlinks must \
be set", be set",
)); ));
} }

View file

@ -142,7 +142,7 @@ impl Processor {
) -> Result<(), Box<dyn Error>> { ) -> Result<(), Box<dyn Error>> {
let window = self.windows.iter().next().as_ref().unwrap().1; let window = self.windows.iter().next().as_ref().unwrap().1;
// Overide config with CLI/IPC options. // Override config with CLI/IPC options.
let mut config_overrides = options.config_overrides(); let mut config_overrides = options.config_overrides();
#[cfg(unix)] #[cfg(unix)]
config_overrides.extend_from_slice(&self.global_ipc_options); config_overrides.extend_from_slice(&self.global_ipc_options);
@ -1439,7 +1439,7 @@ impl<'a, N: Notify + 'a, T: EventListener> ActionContext<'a, N, T> {
self.scheduler.unschedule(TimerId::new(Topic::BlinkCursor, window_id)); self.scheduler.unschedule(TimerId::new(Topic::BlinkCursor, window_id));
self.scheduler.unschedule(TimerId::new(Topic::BlinkTimeout, window_id)); self.scheduler.unschedule(TimerId::new(Topic::BlinkTimeout, window_id));
// Reset blinkinig timeout. // Reset blinking timeout.
*self.cursor_blink_timed_out = false; *self.cursor_blink_timed_out = false;
if blinking && self.terminal.is_focused { if blinking && self.terminal.is_focused {

View file

@ -230,7 +230,7 @@ impl<T: EventListener, A: ActionContext<T>> Processor<T, A> {
_ if mode.contains(TermMode::REPORT_ALL_KEYS_AS_ESC) => { _ if mode.contains(TermMode::REPORT_ALL_KEYS_AS_ESC) => {
build_sequence(key, mods, mode).into() build_sequence(key, mods, mode).into()
}, },
// Winit uses different keys for `Backspace` so we expliictly specify the // Winit uses different keys for `Backspace` so we explicitly specify the
// values, instead of using what was passed to us from it. // values, instead of using what was passed to us from it.
Key::Named(NamedKey::Tab) => [b'\t'].as_slice().into(), Key::Named(NamedKey::Tab) => [b'\t'].as_slice().into(),
Key::Named(NamedKey::Enter) => [b'\r'].as_slice().into(), Key::Named(NamedKey::Enter) => [b'\r'].as_slice().into(),

View file

@ -2082,7 +2082,7 @@ impl<T: EventListener> Handler for Term<T> {
let mode = match mode { let mode = match mode {
ansi::Mode::Named(mode) => mode, ansi::Mode::Named(mode) => mode,
ansi::Mode::Unknown(mode) => { ansi::Mode::Unknown(mode) => {
debug!("Ignorning unknown mode {} in unset_mode", mode); debug!("Ignoring unknown mode {} in unset_mode", mode);
return; return;
}, },
}; };

View file

@ -124,7 +124,7 @@ struct ShellUser {
impl ShellUser { impl ShellUser {
/// look for shell, username, longname, and home dir in the respective environment variables /// look for shell, username, longname, and home dir in the respective environment variables
/// before falling back on looking in to `passwd`. /// before falling back on looking into `passwd`.
fn from_env() -> Result<Self> { fn from_env() -> Result<Self> {
let mut buf = [0; 1024]; let mut buf = [0; 1024];
let pw = get_pw_entry(&mut buf); let pw = get_pw_entry(&mut buf);

View file

@ -30,8 +30,8 @@ active.
## Search ## Search
Search allows you to find anything in Alacritty's scrollback buffer. You can Search allows you to find anything in Alacritty's scrollback buffer. You can
search forward using <kbd>Ctrl</kbd> <kbd>Shift</kbd> <kbd>f</kbd> (<kbd>Command</kbd> <kbd>f</kbd> on MacOS) and search forward using <kbd>Ctrl</kbd> <kbd>Shift</kbd> <kbd>f</kbd> (<kbd>Command</kbd> <kbd>f</kbd> on macOS) and
backward using <kbd>Ctrl</kbd> <kbd>Shift</kbd> <kbd>b</kbd> (<kbd>Command</kbd> <kbd>b</kbd> on MacOS). backward using <kbd>Ctrl</kbd> <kbd>Shift</kbd> <kbd>b</kbd> (<kbd>Command</kbd> <kbd>b</kbd> on macOS).
### Vi Search ### Vi Search

View file

@ -21,7 +21,7 @@ fi
# Create flamegraph # Create flamegraph
cargo flamegraph --bin=alacritty -- $@ cargo flamegraph --bin=alacritty -- $@
# Unintall cargo-flamegraph if it has been installed with this script # Uninstall cargo-flamegraph if it has been installed with this script
if [ $installed_flamegraph == 1 ]; then if [ $installed_flamegraph == 1 ]; then
read -p "Would you like to uninstall cargo-flamegraph? [Y/n] " -n 1 -r read -p "Would you like to uninstall cargo-flamegraph? [Y/n] " -n 1 -r
echo echo