ktetzlaff
ktetzlaff
> A PR with this is welcome 👍 @gaborbernat PR added: #2339.
Here's another case which seems to ask for an unlearn feature. A SPAM message which is accidentally learned as HAM but also matches existing messages learned as SPAM cannot be...
Answering to my own comment: After looking through the sources I found that relearning falsely classified messages works when adding `--header 'Learn-Type: bulk'` to the rspamc call: 1. relearn as...
I have the same problem as @RomanDanyk. Using npiperelay to communicate from WSL2 with windows native ssh-agent works fine for weeks and then suddenly stops working. All ssh commands in...
I can confirm the observation of @stuartleeks: starting any (even console executable) windows program from WSL2 just fails. The terminal blocks forever (Ctrl-C doesn't work) - the w32 executable has...
Here's another variant: ``` elisp (eval-after-load 'rg (defun maybe-pop-to-rg-buffer(&optional buffer _) "Switch to BUFFER (default: rg buffer) and select first match." (with-current-buffer (or buffer (rg-buffer-name)) (when (string= mode-name "rg") (pop-to-buffer...
@annjulyleon: I did not find a workaround which includes both tables in the output. However, you can use the `-I` option to exclude some table(s): ``` [-I excludeTableRegex] Exclude table(s)...
Furthermore, `pass-mode` doesn't handle the following situation: ``` ├── bitbucket.org ├── www.linkedin.com.gpg ├── www.linkedin.com ├── account1 ├── account2 ├── account2 ``` where there is a password entry (`www.linkedin.com.gpg`) and a...
> The warning is computed by the Emacs bytecode compiler, not by Flycheck itself. Thanks for the quick reply! Any idea how to avoid the warning?
> You can use `declare-function` for this. ... @bbatsov Yes, that works. However, I would need to add `declare-function` to a lot of files. Is it somehow possible to declare...