ulyssa / modalkit

A Rust library for building modal editing applications
Apache License 2.0
49 stars 5 forks source link

Accented characters break up word movement #109

Closed ulyssa closed 1 year ago

ulyssa commented 1 year ago

The definition of a WordStyle::Little currently uses char::is_ascii_alphanumeric, which causes movements like b or w to stop around accented characters, resulting in them being treated like whitespace. The definition should use char::is_alphanumeric instead.