Luc Georges
Luc Georges
You want `Tab` to be bound to multiple things? Are you sure that when you set accept/dismiss keymap they don't work? I currently have them on `Alt+i` and it works...
This is how I define the keymaps: ```lua vim.keymap.set("i", accept_keymap, accept_suggestion, { expr = true }) vim.keymap.set("n", accept_keymap, accept_suggestion, { expr = true }) vim.keymap.set("i", dismiss_keymap, dismiss_suggestion, { expr =...
@mAmineChniti do you happen to use clangd lsp? You may need to set the following: ```lua local cmp_nvim_lsp = require "cmp_nvim_lsp" require("lspconfig").clangd.setup { on_attach = on_attach, capabilities = cmp_nvim_lsp.default_capabilities(), cmd...
Hello @teto, thanks for the feedback. I like the idea of a healthcheck. I'll see what I can do. Not sure about checking the PATH for llm-ls though. It's not...
In that case let's add a check of PATH in the language server's `setup` function
Hi @V4G4X, sorry for the very late reply. You have to set `backend = ollama` for this to work.
Could be a lot of different things, will need more information to identify what the issue is. Is your network connectivity stable? Having a reproducible example would help a lot.
@chamini2 that would definitely explain the issue.
@aikitoria cf the [Disclaimer](https://github.com/huggingface/hf_transfer?tab=readme-ov-file#disclaimer). `hf_transfer` was meant to be used internally at first, where rate limit is not an issue. If you want to reduce the number of requests, I...
> Also, it wouldn't explain why the download stops at exactly 99%. It'd make sense that download would stop at higher percentages given a lot of requests are emitted at...