Ty Overby

Results 123 comments of Ty Overby

Also added you as an owner of the crate on crates.io

That does appear to work! Thanks! There are a few issues that I'm running into though: 1. The readme claims that > This project uses submodules to handle dependencies. This...

Here are the instructions that worked for me: ```bash #!/bin/bash set -euo pipefail git clone --recurse-submodules [email protected]:ocaml/ocaml-lsp.git opam switch create ./ ocaml-base-compiler.4.10.0 eval $(opam env) opam install dune export PATH="custom_ocaml_bin_dir_here:$PATH"...

I've found a way to remove the "kind" and "details" elements from the completion list: ```lua local orig = vim.lsp.util.extract_completion_items vim.lsp.util.extract_completion_items = function (...) local modified = orig(unpack({...})) for _,...

@lithammer agreed, it seems like duplicated info

RLS now supports "Workspace Mode": https://github.com/rust-lang-nursery/rls/pull/409

As a casual observer (I'm planning on using Froggy at a later date), I mostly take issue with the name. I'd replace it with `MutexPointer` so that they know just...

Both of these would be really cool. Imagine if all it took to move from lua versions was a cargo feature!

Would this impact any people using hlua with luajit?