otto-dev
otto-dev
I've installed the Scala [metals](https://scalameta.org/metals) language server, and configured it like so: ``` "language.scala.languageServer.command": "metals-vim", "language.scala.languageServer.rootFiles": ["build.sbt", ".git"], ``` Everything works fine, except that if I try to accept an...
`Alt-Shift-X`is received as `` in oni, but as `` in neovim (gui). Notice the capital `X`. This applies to any `Alt-Shift` combination. `init.vim` keybindings differentiate between `` (uppercase) keybindings and...
Empty files that are part of the searchable subset of files should still be listed. `ag` can deduct that no query will match an empty file, without opening the file,...
Fixes #1497 `-l` should include empty files, and only exclude files subject to an exclusion filter (such as `.gitignore`). Empty files are still in the subset of searchable files. `ag`...
> a fiber can close over a non volatile var safely > we should add it to the docs because it's come up a few times :point_up: The (hacky, non-FP)...
This is the result of the following experiment: - start `n` fibers - each fiber has an `id` - the fiber loops, infinitely incrementing an ID-bound value in a `Ref[IO,...
Fixes #464. Also preserves the order of `--pre-select-items` when returning them unchanged. The solution is very simple and natural. I have relied on this behavior a lot during the last...
In multi-select, items are currently returned according to some internal order, rather than in the order in which they were selected. For applications where the item order matters, it would...
I just ported the SQL schema to SQLite, and it seems to work using Slick's SQLite profile. (I am going to use it on a little tool, where a database-server...
Allows conversion of any Scala case class and tuples to/from JSON by importing `mist.api.encoding.defaults._`. Makes it unnecessary to create encoders for case classes. Encoders for specific classes (case classes) will...