Evgeny Kurnevsky
Evgeny Kurnevsky
Can be fixed with a dirty hack: ```elisp (advice-add 'ivy--highlight-fuzzy :around (lambda (orig-fun &rest args) (let* ((cols (split-string (car args) (char-to-string #x200B))) (res (apply orig-fun (list (car cols))))) (mapconcat 'identity...
Reported to ivy repo because it happens with counsel as well: https://github.com/abo-abo/swiper/issues/1969
See https://github.com/qbittorrent/qBittorrent/issues/2682
It doesn't build with nixos-unstable anymore. I tried to update it to 1.12.1 but there were some changes in cmake so it couldn't find nsync.
It gets inserted by skim after executing this line: https://github.com/lotabout/skim/blob/eac57be525e76ff44f82b860a290a517b6fcf85a/shell/key-bindings.zsh#L72-L73 As a workaround it can be wrapped to `echo -ne "\e[1s"` - `echo -ne "\e[1u"` so the cursor stays at...
Probably it's a good thing that skim doesn't move the cursor one line up. So I did in my config: https://github.com/kurnevsky/dotfiles/blob/b1f0b1471ecad842b3158f88f2fb65d3b5d05357/.zshrc#L195 But anyway this should be fixed in the shell...
@dsyzling I was thinking about adding `treeViewProvider` from `lsp-metals.el` by default and having a hook that `lsp-treemacs` will be using. Do I understand it right - your code can handle...
> Yes not sure about the most convenient solution for registering capabilities - in the end I went with the option to choose to enable the treeview and do this...
> I'm confused are you suggesting that you would show one large tree with all projects for all workspaces you have open? Yes, you got it right :) It's the...
> @kurnevsky @yyoncho how do we move forward from here - I certainly don't want to force any decisions on anyone or this feature. How should we combine these code...