mirror of
https://github.com/polybar/polybar.git
synced 2026-02-07 12:45:36 +00:00
fix(config): Proper dereference of ${self.key}
This commit is contained in:
@ -16,8 +16,8 @@ namespace string_util {
|
||||
string upper(const string& s);
|
||||
string lower(const string& s);
|
||||
bool compare(const string& s1, const string& s2);
|
||||
string replace(const string& haystack, string needle, string replacement);
|
||||
string replace_all(const string& haystack, string needle, string replacement);
|
||||
string replace(const string& haystack, string needle, string repl, size_t start = 0, size_t end = string::npos);
|
||||
string replace_all(const string& haystack, string needle, string repl, size_t start = 0, size_t end = string::npos);
|
||||
string squeeze(const string& haystack, char needle);
|
||||
string strip(const string& haystack, char needle);
|
||||
string strip_trailing_newline(const string& haystack);
|
||||
|
||||
Reference in New Issue
Block a user