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.
The definition of a
WordStyle::Little
currently useschar::is_ascii_alphanumeric
, which causes movements likeb
orw
to stop around accented characters, resulting in them being treated like whitespace. The definition should usechar::is_alphanumeric
instead.