1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-09 22:15:15 +03:00

Add links to some docs on a couple of terminal mode codes

This commit is contained in:
Wez Furlong 2020-01-26 14:19:41 -08:00
parent 8c6819ef63
commit 152aa85e82

View File

@ -500,9 +500,13 @@ pub enum TerminalMode {
#[derive(Debug, Clone, PartialEq, Eq, FromPrimitive, ToPrimitive)]
pub enum TerminalModeCode {
/// https://vt100.net/docs/vt510-rm/KAM.html
KeyboardAction = 2,
/// https://vt100.net/docs/vt510-rm/IRM.html
Insert = 4,
/// https://vt100.net/docs/vt510-rm/SRM.html
SendReceive = 12,
/// https://vt100.net/docs/vt510-rm/LNM.html
AutomaticNewline = 20,
}