realazy

Results 19 comments of realazy

Thanks for your information, but ppx_bsx currently relies on Ppxlib, maybe it's another story? (I'm not active on OCaml ecosystem)

Unfortunately Ppxlib requires OCaml >=4.04.1, and BuckleScript only supports 4.02 and 4.06 now, I have no motivation to update right now. And thanks for your good work, I will update...

I'm using this patch, without title bar and keep the rounded corners, works very well: ```diff diff --git a/src/nsterm.m b/src/nsterm.m index aa29c13eb2..6cec091b8e 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -434,6 +434,7...

> @cxa is there a way to apply this patch to emacs-plus? You can clone my [fork](https://github.com/cxa/homebrew-emacs-plus) and run `./build 28 --with-no-titlebar-alt`. (since I only tested on Emacs 28)

For someone who needs no titlebar with rounded corners for 29, you can check out my fork: https://github.com/cxa/homebrew-emacs-plus/blob/master/Formula/emacs-plus%4029.rb

Nice, now I can drop my fork.

Downgrade package `bind-key` or wait for new update. (P.S. the simple way is copy source from `Download` button on , override `~/.emacs.d/elpa/bind-key-20220807.1553/bind-key.el`,and delete `bind-key.elc` in that dir.

My workaround is: set `SPACESHIP_CHAR_SYMBOL` before loading. I'm using `antigen`, this is my working config: ```sh SPACESHIP_CHAR_SYMBOL='%6{🌿🦥🍃%} ' antigen apply ```

You can use my workaround: ```elisp (advice-add 'vertico-posframe--show :before (defun vertico-posframe--show/before (&rest _args) ;; https://github.com/minad/vertico/blob/0f12d85a5a38353471d7657572e69f00fa1b9639/vertico.el#L611 (setq vertico-posframe-truncate-lines (< (point) (* 0.8 (window-width (active-minibuffer-window))))))) ```

You can either: 1. `(setq lsp-auto-execute-action nil)` to avoid auto execution 2. filter out `refactor.move` if you don't need it: ```elisp (advice-add 'lsp--select-action :filter-args (defun get-rid-of/refactor.move (actions_args) (list (seq-remove (lambda...