From 537f738424ddbfb11d4f840b06b597caf36ecbaa Mon Sep 17 00:00:00 2001 From: Alex Pasmantier <47638216+alexpasmantier@users.noreply.github.com> Date: Mon, 30 Dec 2024 01:20:54 +0100 Subject: [PATCH] docs: move terminal emulator compatibility section to separate docs file (#179) --- README.md | 23 ----------------------- docs/terminal_emulators.md | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 23 deletions(-) create mode 100644 docs/terminal_emulators.md diff --git a/README.md b/README.md index b179cb8..ff745df 100644 --- a/README.md +++ b/README.md @@ -139,29 +139,6 @@ config_location/ For more information on the matcher behavior, see the [nucleo-matcher](https://docs.rs/nucleo-matcher/latest/nucleo_matcher/pattern/enum.AtomKind.html) documentation. -## Terminal Emulators Compatibility -Here is a list of terminal emulators that have currently been tested with `television` and their compatibility status. - -| Terminal Emulator | Tested Platforms | Compatibility | -| --- | :---: | :---: | -| Alacritty | macOS, Linux | ✅ | -| Kitty | macOS, Linux | ✅ | -| iTerm2 | macOS | ✅ | -| Ghostty | macOS | ✅ | -| Wezterm | macOS, Linux, Windows | ✅ | -| macOS Terminal | macOS | functional but coloring issues | -| Konsole | Linux | ✅ | -| Terminator | Linux | ✅ | -| Xterm | Linux | ✅ | -| Cmder | Windows | ✖️ | -| Foot | Linux | ✅ | -| Rio | macOS, Linux, Windows | ✅ | -| Warp | macOS | ✅ | -| Hyper | macOS | ✅ | - - - - ## Contributions Contributions, issues and pull requests are welcome. diff --git a/docs/terminal_emulators.md b/docs/terminal_emulators.md new file mode 100644 index 0000000..11ed9e0 --- /dev/null +++ b/docs/terminal_emulators.md @@ -0,0 +1,21 @@ +## Terminal Emulators Compatibility +Here is a list of terminal emulators that have currently been tested with `television` and their compatibility status. + +| Terminal Emulator | Tested Platforms | Compatibility | +| --- | :---: | :---: | +| Alacritty | macOS, Linux | ✅ | +| Kitty | macOS, Linux | ✅ | +| iTerm2 | macOS | ✅ | +| Ghostty | macOS | ✅ | +| Wezterm | macOS, Linux, Windows | ✅ | +| macOS Terminal | macOS | functional but coloring issues | +| Konsole | Linux | ✅ | +| Terminator | Linux | ✅ | +| Xterm | Linux | ✅ | +| Cmder | Windows | ✖️ | +| Foot | Linux | ✅ | +| Rio | macOS, Linux, Windows | ✅ | +| Warp | macOS | ✅ | +| Hyper | macOS | ✅ | + +If you're able to test the application with a configuration not yet listed above, feel free to open a PR and add it here 🙏