Janko Marohnić
Janko Marohnić
What specific functionality are you eager to get from MiniMagick 5.0? I'm not in a rush because that release was mostly about removing deprecated stuff.
Are you referring only to the `convert` => `magick` deprecation? That shouldn't issue deprecation warnings on MiniMagick < 5, MiniMagick should be silencing those. But yeah, that's additional reason for...
https://github.com/janko/image_processing/pull/132 has been merged and released in 1.14.0, so closing this one.
In the upcoming major version, I will demote MiniMagick and ruby-vips to optional dependencies. This means people will have to add MiniMagick or ruby-vips to their Gemfiles, depending on which...
I think additionally checking that query text is blank should be sufficiently safe, so I opened a PR – https://github.com/alexreisner/geocoder/pull/1690.
It would probably be ergonomical to make the first argument to `Geocoder.search` optional, but didn't want to jump the horse 😃
I too would like a way to exclude indexing of all gems. That not only speeds up indexing significantly, but also `workspace/symbol` searches as the OP said, which I rarely...
I measured that a `workspace/symbol` search is **3.5x faster** in my Rails project when gems are **not indexed**. Coupled with Zed's lack of debouncing while typing the search query and...
@pkondzior Yeah, the performance could be improved by adding a new dependency. However, Zed seems to filter out any symbols that aren't in the project from the search results anyway...
Oh, didn't realize it was ignored at the Ruby LSP level. Wondering if it makes sense to first filter out symbols not in workspace, and *then* perform fuzzy search on...