Skip to content

Commit 6d20946

Browse files
Mark alacritty as supporting kitty protocol (#851)
1 parent 6fde554 commit 6d20946

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: src/event.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,9 @@ bitflags! {
256256
/// Add extra events with [`KeyEvent.kind`] set to [`KeyEventKind::Repeat`] or
257257
/// [`KeyEventKind::Release`] when keys are autorepeated or released.
258258
const REPORT_EVENT_TYPES = 0b0000_0010;
259-
// Send [alternate keycodes](https://sw.kovidgoyal.net/kitty/keyboard-protocol/#key-codes)
260-
// in addition to the base keycode. The alternate keycode overrides the base keycode in
261-
// resulting `KeyEvent`s.
259+
/// Send [alternate keycodes](https://sw.kovidgoyal.net/kitty/keyboard-protocol/#key-codes)
260+
/// in addition to the base keycode. The alternate keycode overrides the base keycode in
261+
/// resulting `KeyEvent`s.
262262
const REPORT_ALTERNATE_KEYS = 0b0000_0100;
263263
/// Represent all keyboard events as CSI-u sequences. This is required to get repeat/release
264264
/// events for plain-text keys.
@@ -444,6 +444,7 @@ impl Command for DisableBracketedPaste {
444444
/// * [kitty terminal](https://sw.kovidgoyal.net/kitty/)
445445
/// * [foot terminal](https://codeberg.org/dnkl/foot/issues/319)
446446
/// * [WezTerm terminal](https://wezfurlong.org/wezterm/config/lua/config/enable_kitty_keyboard.html)
447+
/// * [alacritty terminal](https://github.com/alacritty/alacritty/issues/6378)
447448
/// * [notcurses library](https://github.com/dankamongmen/notcurses/issues/2131)
448449
/// * [neovim text editor](https://github.com/neovim/neovim/pull/18181)
449450
/// * [kakoune text editor](https://github.com/mawww/kakoune/issues/4103)

0 commit comments

Comments
 (0)