mirror of
https://github.com/polybar/polybar.git
synced 2026-02-16 09:16:02 +00:00
fix(config): Remove tabs
This commit is contained in:
@ -86,6 +86,8 @@ void config::parse_file() {
|
||||
while (std::getline(in, line)) {
|
||||
lineno++;
|
||||
|
||||
line = string_util::replace_all(line, "\t", "");
|
||||
|
||||
// Ignore empty lines and comments
|
||||
if (line.empty() || line[0] == ';' || line[0] == '#') {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user