Florian Bruhin
Florian Bruhin
#3581 added a count for `:tab-give`, but since counts start at 1 (but window IDs start at 0), the count is offset by one, which is confusing. I guess we...
While writing something in MS Teams, hlwm suddenly crashed with: ```c++ #0 0x00007d93522a53f4 in ?? () from /usr/lib/libc.so.6 #1 0x00007d935224c120 in raise () from /usr/lib/libc.so.6 #2 0x00007d93522334c3 in abort ()...
Add a new `monitors.tag_selection_strategy` attribute. Depending on what it is set to, when a new monitor is added, HLWM will either: - Pick the first tag that's currently not shown...
Use [pathlib](https://docs.python.org/3/library/pathlib.html) instead of `os.path`, which exposes file paths as objects, similar to what `tmpdir` does. Also replace `tmpdir` by the [more modern `tmp_path`](https://docs.pytest.org/en/stable/how-to/tmp_path.html) which uses the pathlib API instead...
- Use newline separated `passenv` values to [make things run with tox 4](https://tox.wiki/en/latest/upgrading.html#changed-ini-rules) (contrary to commas, newlines are backwards compatible with tox 3) - Use `py3` without specifying a minor...
I tend to forget sending messages encrypted. I think there are a few scenarios where it should default to true: - Certainly when we are replying to an encrypted mail...
When I reply to a mail that gets shown as `From: Firstname Sjökvist` in the UI, the draft and reply show `To: =?utf-8?q?Firstname_Sj=C3=B6kvist?= `. I haven't tried how that actually...
When creating a message with `hellö` in it and attempting to send it, Dodo fails with: ```pytb Traceback (most recent call last): File "/home/florian/proj/dodo/dodo/compose.py", line 445, in run m =...
As discussed briefly in #63, it's easy to miss errors that happen in subprocesses (e.g. `offlineimap`), or lose useful debugging information if not running in a terminal (e.g. `sendmail` or...
Other than the obvious (`from:`, `to:`, `subject:`, `tag:`), I end up reading `man notmuch-search-terms` from time to time, to find out how to best search for things. It would be...