-
I have lazyvim with blink.cmp. This is my whole config: return {
"saghen/blink.cmp",
opts = {
keymap = { preset = "super-tab" },
},
} I want to show completions from my language server. I can see it's correctly attached to the buffer when I do This means I can't do things like put my cursor next to the * in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I solved this. To anyone reading, it was because I was on windows and Ctrl+Space wasn't being sent to the terminal. The solution was to use Wezterm on windows and put this in the config: config.keys = {
{
key = " ",
mods = "CTRL",
action = wezterm.action.SendKey({ key = " ", mods = "CTRL" }),
},
} |
Beta Was this translation helpful? Give feedback.
I solved this. To anyone reading, it was because I was on windows and Ctrl+Space wasn't being sent to the terminal. The solution was to use Wezterm on windows and put this in the config: