fix: add tab support
This commit is contained in:
parent
33352ad163
commit
2f087d8835
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue