-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
commands/include: handle many files in single line #8455
Conversation
Reading https://github.com/i3/i3/blob/2746e0319b03a8a5a02b57a69b1fb47e0a9c22f1/src/config_directives.c#L18: it seems like i3's |
@emersion I hadn't checked the code then, looking into the logs I see
And if you look into what |
@emersion, also the code looks pretty self explanatory, we loop over the |
Ah, it seems the whole string until end-of-line is passed in to that i3 function, instead of a single word. Instead of looping over arguments, we should probably handle this like |
i3 supports including multiple files in a single line, whereas sway limits to single file per line.
8524cb0
to
8f2419d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
i3 supports including multiple files in a single line, whereas sway limits to single file per line.