fix: add tab support

This commit is contained in:
Daniella 2023-04-10 01:58:32 +02:00
parent 33352ad163
commit 2f087d8835
Signed by: TudbuT
GPG key ID: 7D63D5634B7C417F

View file

@ -287,7 +287,7 @@ fn parse_line(line: &str) -> Vec<String> {
if c == '(' || c == ')' {
continue;
}
if c == ' ' {
if c == ' ' || c == '\t' {
if s.is_empty() {
continue;
}