summaryrefslogtreecommitdiff
path: root/alacritty_terminal/tests/ref.rs
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2022-07-10 20:11:28 +0300
committerGitHub <noreply@github.com>2022-07-10 20:11:28 +0300
commit694a52bcffeffdc9e163818c3b2ac5c39e26f1ef (patch)
treea774babc1869b4c700d7df1478dbbfe5b2c3bcda /alacritty_terminal/tests/ref.rs
parent8451b75689b44f11ec1707af7e26d915772c3972 (diff)
downloadalacritty-694a52bcffeffdc9e163818c3b2ac5c39e26f1ef.tar.gz
alacritty-694a52bcffeffdc9e163818c3b2ac5c39e26f1ef.zip
Add support for hyperlink escape sequence
This commit adds support for hyperlink escape sequence `OSC 8 ; params ; URI ST`. The configuration option responsible for those is `hints.enabled.hyperlinks`. Fixes #922.
Diffstat (limited to 'alacritty_terminal/tests/ref.rs')
-rw-r--r--alacritty_terminal/tests/ref.rs45
1 files changed, 23 insertions, 22 deletions
diff --git a/alacritty_terminal/tests/ref.rs b/alacritty_terminal/tests/ref.rs
index 6f9d39d0..b304c48c 100644
--- a/alacritty_terminal/tests/ref.rs
+++ b/alacritty_terminal/tests/ref.rs
@@ -28,15 +28,36 @@ macro_rules! ref_tests {
}
ref_tests! {
+ alt_reset
+ clear_underline
+ colored_reset
+ colored_underline
csi_rep
+ decaln_reset
+ deccolm_reset
+ delete_chars_reset
+ delete_lines
+ erase_chars_reset
fish_cc
+ grid_reset
+ history
+ hyperlinks
indexed_256_colors
+ insert_blank_reset
issue_855
ll
newline_with_cursor_beyond_scroll_region
+ region_scroll_down
+ row_reset
+ saved_cursor
+ saved_cursor_alt
+ scroll_up_reset
+ selective_erasure
+ sgr
tab_rendering
tmux_git_log
tmux_htop
+ underline
vim_24bitcolors_bce
vim_large_window_scroll
vim_simple_edit
@@ -46,29 +67,9 @@ ref_tests! {
vttest_origin_mode_2
vttest_scroll
vttest_tab_clear_set
- zsh_tab_completion
- history
- grid_reset
- row_reset
- zerowidth
- selective_erasure
- colored_reset
- colored_underline
- delete_lines
- delete_chars_reset
- alt_reset
- deccolm_reset
- decaln_reset
- insert_blank_reset
- erase_chars_reset
- scroll_up_reset
- clear_underline
- region_scroll_down
wrapline_alt_toggle
- saved_cursor
- saved_cursor_alt
- sgr
- underline
+ zerowidth
+ zsh_tab_completion
}
fn read_u8<P>(path: P) -> Vec<u8>