feat: add - < > to non word chars list

This commit is contained in:
CJ van den Berg 2024-12-06 21:07:56 +01:00
parent cf2b9c76ed
commit c282398d6e
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -1622,6 +1622,9 @@ pub const Editor = struct {
'|' => true,
'?' => true,
'&' => true,
'-' => true,
'<' => true,
'>' => true,
else => false,
};
}