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

remove another debug line

This commit is contained in:
Wez Furlong 2018-02-25 13:37:15 -08:00
parent 4a5a39dde0
commit 4b92a03c15

View File

@ -183,8 +183,6 @@ impl Line {
let line = self.as_str();
for m in Rule::match_hyperlinks(&line, &rules) {
println!("expanded url to {:?}", m.link);
// The capture range is measured in bytes but we need to translate
// that to the char index of the column.
for (cell_idx, (byte_idx, _char)) in line.char_indices().enumerate() {