1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-23 00:39:13 +02:00

support alacritty

This commit is contained in:
Jesse Duffield
2020-08-23 20:20:05 +10:00
parent f172f20219
commit 44ee28bb2e
6 changed files with 14 additions and 12 deletions

View File

@ -123,6 +123,7 @@ func setup_term_builtin() error {
// let's assume that 'cygwin' is xterm compatible
{"cygwin", xterm_keys, xterm_funcs},
{"st", xterm_keys, xterm_funcs},
{"alacritty", xterm_keys, xterm_funcs},
}
// try compatibility variants

View File

@ -61,4 +61,5 @@ var terms = []struct {
{"rxvt-unicode", rxvt_unicode_keys, rxvt_unicode_funcs},
{"linux", linux_keys, linux_funcs},
{"rxvt-256color", rxvt_256color_keys, rxvt_256color_funcs},
{"alacritty", xterm_keys, xterm_funcs},
}