@@ -25,29 +25,29 @@ assert_highlighted "/this/is/some/file.txt" "middle of the pane, absolute path,
25
25
26
26
display_text "random /this/is/some/file.txt"
27
27
tmux_ctrl_f
28
- assert_highlighted " /this/is/some/file.txt" "middle of the pane, absolute path, not beginning of the line"
28
+ assert_highlighted "/this/is/some/file.txt" "middle of the pane, absolute path, not beginning of the line"
29
29
30
30
display_text "another/file.txt"
31
31
tmux_ctrl_f
32
32
assert_highlighted "another/file.txt" "middle of the pane, relative path, beginning of the line"
33
33
34
34
display_text "some text another/file.txt"
35
35
tmux_ctrl_f
36
- assert_highlighted " another/file.txt" "middle of the pane, relative path, not beginning of the line"
36
+ assert_highlighted "another/file.txt" "middle of the pane, relative path, not beginning of the line"
37
37
38
38
create_output
39
39
sleep 0.2
40
40
send " some/file.xyz "
41
41
sleep 0.2
42
42
tmux_ctrl_f
43
- assert_highlighted " some/file.xyz" "middle of the pane relative path, pane bottom"
43
+ assert_highlighted "some/file.xyz" "middle of the pane relative path, pane bottom"
44
44
45
45
# match selection when line contains escaped chars
46
46
#-------------------------------------------------
47
47
new_tmux_pane
48
48
display_text "filename=test.csv\r\nContent-Type: text/csv\r\n"
49
49
tmux_ctrl_f
50
- assert_highlighted " text/csv" "match selection when line contains escaped chars"
50
+ assert_highlighted "text/csv" "match selection when line contains escaped chars"
51
51
52
52
# result navigation
53
53
#------------------
@@ -67,7 +67,7 @@ next_match
67
67
# /file/1.txt
68
68
previous_match
69
69
# /file/2.txt
70
- assert_highlighted " /file/2.txt" "result navigation at the top of the pane"
70
+ assert_highlighted "/file/2.txt" "result navigation at the top of the pane"
71
71
72
72
create_output
73
73
display_text "/file/1.txt"
@@ -80,7 +80,7 @@ next_match
80
80
# /file/1.txt
81
81
previous_match
82
82
# /file/2.txt
83
- assert_highlighted " /file/2.txt" "result navigation, middle of the pane"
83
+ assert_highlighted "/file/2.txt" "result navigation, middle of the pane"
84
84
85
85
# 2 matches on the same line
86
86
#---------------------------
@@ -92,7 +92,7 @@ assert_highlighted "/file/1.txt" "2 matches on the same line, first match"
92
92
display_text "/file/1.txt another/file/2.txt"
93
93
tmux_ctrl_f
94
94
next_match
95
- assert_highlighted " another/file/2.txt" "2 matches on the same line, second match"
95
+ assert_highlighted "another/file/2.txt" "2 matches on the same line, second match"
96
96
97
97
# no match, first and last match
98
98
#-------------------------------
@@ -130,15 +130,15 @@ exit_irb
130
130
enter_irb
131
131
irb_display_text "some text file/within/irb.rb"
132
132
tmux_ctrl_f
133
- irb_assert_highlighted " file/within/irb.rb" "irb console relative path, not beggining of line"
133
+ irb_assert_highlighted "file/within/irb.rb" "irb console relative path, not beggining of line"
134
134
exit_irb
135
135
136
136
enter_irb
137
137
irb_generate_output
138
138
send "puts /absolute/file/irb.rb"
139
139
sleep 5
140
140
tmux_ctrl_f
141
- irb_assert_highlighted " /absolute/file/irb.rb" "irb console absolute path, pane bottom, not beggining of line"
141
+ irb_assert_highlighted "/absolute/file/irb.rb" "irb console absolute path, pane bottom, not beggining of line"
142
142
exit_irb
143
143
144
144
# quit
0 commit comments