Saghen / blink.cmp

Performant, batteries-included completion plugin for Neovim
MIT License
632 stars 27 forks source link

Add config to explicitly specify the dll version #36

Closed julienvincent closed 2 days ago

julienvincent commented 2 days ago

This adds a new downloader config table which allows:

  1. Enabling or disabling the dll downloader
  2. Explicitly specifying the version to download

This is useful if I want to track master (and get the latest lua changes) without needing to run cargo build --release.

Saghen commented 2 days ago

Great idea! I'd prefer that it's under fuzzy.prebuiltBinaries = { download = true, forceVersion = nil }

Saghen commented 2 days ago

Also a warning that the FFI may change while tracking main and the prebuilt binaries will stop working

julienvincent commented 2 days ago

Done!

Saghen commented 2 days ago

Thank you!