Florian Bruhin
Florian Bruhin
Given that we dropped support for Qt < 5.15.2 (coming with Chromium 83) in `master`, we could indeed use them. Looking at [ESLint v7.2.0 released - ESLint - Pluggable JavaScript...
In this particular case, why not just use the "swap" button in the middle instead? In a more general sense, we have `:click-element`, recently also extended by CSS selectors (#6609),...
Your `filter` argument should just be `css` - and classes need a `.` for CSS selectors, e.g. `.lmt__textarea`. However, that will find multiple elements. I'd suggest something like `:click-element css...
#6609 was only merged recently and is not released yet, you need to run from git master to use it.
Taking the freedom to hide some comments above as off-topic, since they are indeed not really relevant to what you originally proposed. I will need to think about it a...
Thanks for the contribution! This looks like a lot of new complexity, and I wonder if there's a simpler solution around replaying those events, but I will need to take...
Abandoned patch from #2506: ```patch From f9ca5b0259a83b7d3caab9905dfb755f6553ade4 Mon Sep 17 00:00:00 2001 From: Martin Tournoij Date: Mon, 3 Apr 2017 01:43:45 +0100 Subject: [PATCH 1/2] Don't error out on unicode...
I don't think `surrogateescape` makes sense here, as we typically want to insert the text on some website. If we can't interpret the text, showing an error (similar to when...
There are actually two situations in which an UnicodeError can happen: - When writing the text we got from the website to a file. Here, `surrogateescape` could in theory help,...
Another similar one: https://crashes.qutebrowser.org/view/3ff03e0d ``` Traceback (most recent call last): File "qutebrowser\misc\editor.py", line 171, in _on_file_changed File "codecs.py", line 322, in decode UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa0 in...