lrustand

Results 42 comments of lrustand

+1. Lichess client would be really cool

Okay, I see what is happening here. This is hardcoded behaviour in exwm-mode, as seen in the following line in the mode definition: ```elisp ;; Change major-mode is not allowed...

I also had a similar function in my config: ```elisp (defun my-toggle-fullscreen () "Toggle fullscreen for the current buffer. Automatically exits fullscreen if any window-changing command is executed." (interactive) (if...

Did you also set `exwm-layout-show-all-buffers` to `t`? For me both variables were needed. EDIT: Notice the _layout_ in the variable name instead of _workspace_. Looking at the description of the...

For anyone else having this problem, just add the following to your init.el: ``` (defun old-version-of-vterm--get-color (index &rest args) "This is the old version before it was broken by commit...

I found out I can manually call `(dired-avfs-open)` which seems to do the right thing, but the readme says that it should be "seamless" and that everything should "Should Just...

Somehow it has started working now, without changing anything. Anyway, I now have discovered a different problem (should I open a separate issue?): 1. Open zip file. It now correctly...

> Not a full review, but a couple of things I noticed: Thanks for the feedback! > * This seems to [break](https://github.com/qutebrowser/qutebrowser/actions/runs/12609600020/job/35143304080?pr=8445#step:10:138) `TestArgumentParser.test_help` in `tests/unit/commands/test_argparser.py`. Not sure off-hand why. Yes,...

I've addressed the things you commented on, and fixed linter and test failures, so I'm ready for another review. Regarding your suggestion to use a deque, I ended up choosing...

Yes, I did think of that after reading the documentation for weakref, and did make an initial implementation using `WeakKeyDictionary` using the windows as keys and `None` as values. I...