feat(editor): add '&' to non-word character list

This commit is contained in:
CJ van den Berg 2024-07-02 12:29:43 +02:00
parent 73f7025277
commit 5164164fd7

View file

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