mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-07 08:21:02 -04:00
main/client: be POSIXLY_CORRECT when parsing command line
This means command line parsing stops when it encounters the first nonoption argument. The result is that one no longer need to use '--' to ensure arguments are passed to the shell/command, instead of parsed by foot. That is, instead of foot -- sh -c true one can now do foot sh -c true Arguments to foot *must* go before the command: foot --fullscreen sh -c true
This commit is contained in:
parent
56d53ec2a1
commit
5b70f94827
5 changed files with 15 additions and 12 deletions
|
|
@ -43,6 +43,9 @@
|
|||
* The four primary font variants (normal, bold, italic, bold italic)
|
||||
are now loaded in parallel. This speeds up both the initial startup
|
||||
time, as well as a DPI changes.
|
||||
* Command line parsing no longer tries to parse arguments following
|
||||
the command-to-execute. This means one can now write `foot sh -c
|
||||
true` instead of `foot -- sh -c true`.
|
||||
|
||||
|
||||
### Deprecated
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue