Mitchell Horning
Mitchell Horning
I don't completely understand the issue either, but I have had a good experience mapping my keyboards with [kmonad/kmonad: An advanced keyboard manager](https://github.com/kmonad/kmonad) rather than `setxkbmap`. This changes my keyboard...
> ``` > setxkbmap us -variant colemak & > exec emacs -f exwm-enable > ``` stands out to me as a possible issue. The `&` is telling the shell to...
I don't know about `scroll-other-window`, because that is a feature that I do not use. A similar idea that I have had before is something like `evil-collection` for `EXWM`. The...
The functions `#'exwm-layout-unset-fullscreen` and `#'exwm-layout-toggle-fullscreen` will take a fullscreen window such as a youtube video and shrink it into its associated Emacs window. Since the modeline is not available in...
I am not sure about a general solution, but your specific use case (a youtube video or similar full screen browser video being contained within an Emacs window) is solved...
I still experience this on version 20240324.1010, but only when LSP-mode is active. It may just be an `lsp-mode` issue or perhaps these two modes interact with each other somehow....
The workaround mentioned in https://github.com/1Password/terraform-provider-onepassword/issues/140#issuecomment-1896248569 seems to also work here. Perhaps the fix on the 1Password CLI side could also lead to a fix on this issue.
That is an interesting philosophical point and is possibly evidence that `?` should be reserved only for boolean-valued predicates. Check out https://github.com/bbatsov/clojure-style-guide/issues/182#issuecomment-516303299 for an interesting perspective on this. I am...
For anyone interested in this, my team noticed the above `:option-fn` did not correctly handle nested `:hiccup`. I have made a slight improvement here: ```clojure (fn [opts n exprs] (let...
Thanks! That makes a lot of sense to me. I think `{:indent X}` works in this specific instance for us, but probably does not generalize very easily. The root cause...