Stevan Milic

Results 29 comments of Stevan Milic

I fixed it following solution from @Tymonrare. My .Xresource file before: ``` URxvt*font: xft:Inconsolata Nerd Font Mono:pixelsize=27 URxvt*boldFont: xft:Inconsolata Nerd Font Mono:pixelsize=27 URxvt*letterSpace: 0 ``` My .Xresource file after fix:...

Try: `let g:tern#command = ['tern']`

I'm also having lags on bigger repos. This is especially annoying during `BufAdd` and `BufLeave` events, ~disabling the test dicovery (https://github.com/nvim-neotest/neotest/pull/30) in config doesn't solve the issue~ disabling test discovery...

I can confirm that this issue is solved with new release 1.4.0. I've also spent a lot of time figuring this out...

hey @lewis6991 thanks for working on this, is there any way we can solve this issue? Just wanted to bump this, as formatting a buffer usually breaks the folds.

@JoseConseco I'm having the same problem with pyright LSP, I make use of the telescope action: `require("telescope.actions").to_fuzzy_refine` that uses the search of LSP and pushes it to the native fuzzy...

@thedrow I've made a PR. Although the PR does bring some optimization, it didn't solve my problem. Exchanges have only one queue set, so the lookup with `SMEMBERS` comes down...

> Do you happen to have an analysis of how much this improved the performance of the Redis broker? Last time I measured it, it took same amount of time....

As far as I remember, there weren't any differences between `sismember` and `smembers`. The main reason is that exchange had only one queue is set so it both method come...

Ye I know that. But in my case there was always a single queue(element) in the exchange(set). I'm not sure in which cases `kombu` creates multiple queues for a single...