mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
Ticket #4396: (tty_check_term): support Contour terminal.
Contour terminal: https://github.com/contour-terminal/contour. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
1c31e57c74
commit
6cd17f6bbf
@ -101,6 +101,7 @@ sigintr_handler (int signo)
|
||||
* foot*
|
||||
* screen*
|
||||
* tmux*
|
||||
* contour*
|
||||
*/
|
||||
gboolean
|
||||
tty_check_term (gboolean force_xterm)
|
||||
@ -124,7 +125,8 @@ tty_check_term (gboolean force_xterm)
|
||||
|| strncmp (termvalue, "alacritty", 9) == 0
|
||||
|| strncmp (termvalue, "foot", 4) == 0
|
||||
|| strncmp (termvalue, "screen", 6) == 0
|
||||
|| strncmp (termvalue, "tmux", 4) == 0;
|
||||
|| strncmp (termvalue, "tmux", 4) == 0
|
||||
|| strncmp (termvalue, "contour", 7) == 0;
|
||||
/* *INDENT-ON* */
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user