d674090f96
commands_parser.c: Make re-entrant ( #6523 )
...
Refactor to work with various for_window matching related issues
Depends on https://github.com/i3/i3/pull/6514
Related to https://github.com/i3/i3/issues/3588#issuecomment-544186208
Related to https://github.com/i3/i3/issues/4346
Related to https://github.com/i3/i3/issues/6037
Reverts commit 1cc2548027 / #6509
2025-11-07 08:18:36 +01:00
1cc2548027
271-for_window_tilingfloating: Fix flaky test ( #6509 )
...
Floating assignments run based on the _I3_FLOATING_WINDOW property which
means we have to go through X11 first.
2025-10-07 17:37:04 +02:00
05feaecf8a
Remove v3 to v4 automatic migration logic ( #6144 )
...
Closes https://github.com/i3/i3/issues/6131
2024-07-09 18:03:57 +00:00
c6befec0fd
Fix dead links for Modern Perl book
...
Closes : #5523
Signed-off-by: Wesley Schwengle <wesleys@opperschaap.net >
2023-09-04 16:09:05 +02:00
1ba0eaca22
Make floating_from and tiling_from criterion work in commands, too ( #5278 )
...
Fixes https://github.com/i3/i3/issues/5258
2022-11-12 16:44:08 +01:00
ae757c6848
Extend tiling/floating criteria with optional auto/user values ( #4006 )
...
The default `tiling` and `floating` behavior is preserved and matches
both cases.
Adds a new handler to `remanage_window` on A_I3_FLOATING_WINDOW change.
Mainly in order to `run_assignments`, this makes `for_window [floating]`
directives to work for windows which where initially opened as tiling.
Now, when floating is enabled, `for_window` will trigger correctly. Same
applies to `for_window [tiling]`.
The obvious solution of `run_assignments` after
`floating_{enable,disable}` doesn't work because `run_assignments`
modifies the parser state in src/assignments.c:51.
Fixes #3588
Co-Authored-By: Michael Stapelberg <michael@stapelberg.de >
2020-04-12 13:49:08 +02:00
7ad32fd2d1
tests: replace http:// with https:// where appropriate
...
This was done automatically using:
% sed -i 's,http://build.i3wm.org,https://build.i3wm.org,g ' testcases/t/*.t
2017-09-24 10:19:50 +02:00
02786155dc
tests: use i3_config arg instead of precisely one launch_with_config
...
This way, tests are shorter, and i3test’s invocation of launch_with_config
parallelizes work better, using dont_block => 1.
2017-09-14 21:46:20 +02:00
3a31a76b2a
Reorder tests to not use the same number ( #2947 )
...
Distinct numbers make re-running individual tests easier by helping with
tab-completion.
Completeness verified using:
% for i in $(seq 0 600)
do
files=$(ls testcases/t/$(printf "%03d" $i)-*.t 2>&- | wc -l)
[ "$files" != "0" ] && [ "$files" != "1" ] && echo "clash: $i"
done
2017-09-14 17:49:02 +02:00