mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
multi command keybinds
This commit is contained in:
parent
e505abfe75
commit
0bea2e2122
6 changed files with 280 additions and 109 deletions
|
@ -7,6 +7,7 @@ extern const char *whitespace;
|
|||
|
||||
char *strip_whitespace(char *str);
|
||||
char *strip_comments(char *str);
|
||||
void strip_quotes(char *str);
|
||||
|
||||
// Simply split a string with delims, free with `free_flat_list`
|
||||
list_t *split_string(const char *str, const char *delims);
|
||||
|
@ -22,5 +23,10 @@ int unescape_string(char *string);
|
|||
char *join_args(char **argv, int argc);
|
||||
char *join_list(list_t *list, char *separator);
|
||||
|
||||
// split string into 2 by delim.
|
||||
char *cmdsep(char **stringp, const char *delim);
|
||||
// Split string into 2 by delim, handle quotes
|
||||
char *argsep(char **stringp, const char *delim);
|
||||
|
||||
char *strdup(const char *);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue