Projects STRLCPY alacritty Commits d5b2dac7
🤬
  • Create new windows with Cmd+N by default

    This changes the default Cmd+N binding on macOS to create a new window
    rather than spawning a new instance.
    
    Initially this change was held back for further testing of the
    multi-window feature. At this point all significant issues found with it
    have been fixed so it should be ready for prime-time now.
  • Loading...
  • Christian Duerr committed with GitHub 1 year ago
    d5b2dac7
    1 parent 87c38aa9
  • ■ ■ ■ ■ ■
    CHANGELOG.md
    skipped 16 lines
    17 17  - `font.glyph_offset.y` is now applied to underline/strikeout
    18 18  - Always use sRGB color space on macOS
    19 19  - Erase in line after the last column will no longer clear the last column
     20 +- Open new windows by default with macOS `Cmd`+`N` binding
    20 21   
    21 22  ### Fixed
    22 23   
    skipped 1083 lines
  • ■ ■ ■ ■
    alacritty/src/config/bindings.rs
    skipped 713 lines
    714 714   Action::Esc("\x0c".into());
    715 715   K, ModifiersState::LOGO, ~BindingMode::VI, ~BindingMode::SEARCH; Action::ClearHistory;
    716 716   V, ModifiersState::LOGO, ~BindingMode::VI; Action::Paste;
    717  - N, ModifiersState::LOGO; Action::SpawnNewInstance;
     717 + N, ModifiersState::LOGO; Action::CreateNewWindow;
    718 718   F, ModifiersState::CTRL | ModifiersState::LOGO; Action::ToggleFullscreen;
    719 719   C, ModifiersState::LOGO; Action::Copy;
    720 720   C, ModifiersState::LOGO, +BindingMode::VI, ~BindingMode::SEARCH; Action::ClearSelection;
    skipped 727 lines
  • ■ ■ ■ ■
    alacritty.yml
    skipped 864 lines
    865 865   #- { key: M, mods: Command, action: Minimize }
    866 866   #- { key: Q, mods: Command, action: Quit }
    867 867   #- { key: W, mods: Command, action: Quit }
    868  - #- { key: N, mods: Command, action: SpawnNewInstance }
     868 + #- { key: N, mods: Command, action: CreateNewWindow }
    869 869   #- { key: F, mods: Command|Control, action: ToggleFullscreen }
    870 870   #- { key: F, mods: Command, mode: ~Search, action: SearchForward }
    871 871   #- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
    skipped 31 lines
Please wait...
Page is in error, reload to recover