diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-01-01 05:07:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-01 05:07:39 +0000 |
commit | 8ed72cc065255007a7f0687e3b8a540e8c6202c6 (patch) | |
tree | 97be52ae4c288fcfeb849d1f97f7a5efc9c2dab1 /alacritty_terminal/src/config | |
parent | 1723e30d25f0c6068f9532448b016a89aa491a95 (diff) | |
download | alacritty-8ed72cc065255007a7f0687e3b8a540e8c6202c6.tar.gz alacritty-8ed72cc065255007a7f0687e3b8a540e8c6202c6.zip |
Remove Windows WinPTY backend
Diffstat (limited to 'alacritty_terminal/src/config')
-rw-r--r-- | alacritty_terminal/src/config/mod.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/alacritty_terminal/src/config/mod.rs b/alacritty_terminal/src/config/mod.rs index cbe56057..caa8930b 100644 --- a/alacritty_terminal/src/config/mod.rs +++ b/alacritty_terminal/src/config/mod.rs @@ -57,10 +57,6 @@ pub struct Config<T> { /// Bell configuration. bell: BellConfig, - #[cfg(windows)] - #[config(deprecated = "recompile with winpty feature or remove this setting")] - pub winpty_backend: bool, - #[config(deprecated = "use `bell` instead")] pub visual_bell: Option<BellConfig>, } |