1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-27 12:23:46 +03:00

Support unicode charaters in

This commit is contained in:
Gus Wynn 2021-04-08 09:04:31 -07:00 committed by Wez Furlong
parent c14ec06ff6
commit dee10c2f21

View File

@ -52,7 +52,7 @@ pub struct SelectionRange {
}
fn is_double_click_word(s: &str) -> bool {
match s.len() {
match s.chars().count() {
1 => !config::configuration().selection_word_boundary.contains(s),
0 => false,
_ => true,