-
Notifications
You must be signed in to change notification settings - Fork 233
feat: matched character highlighting #245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
73b00f8
to
bd9ca40
Compare
Looks great! How did you right-align the label details? I'd like to be able to do the same with kind if possible, but I don't see options for that anywhere. BTW, there's a |
Shit 😂 fixed it on main. You can right align by using It's not obvious how this all works at the moment, so I might make some more changes to this API |
Thanks! Added it to the default config docs. I'll make it more prominent closer to 1.0, when I write the full docs |
Since you've completely changed how the draw is being configured, I'm having trouble finding a proper solution to how I can "draw' exactly what I had before: #156 (comment) How am I supposed to approach this new config if I wanted the same result? |
@Saghen how do you achieve displaying the file containing the proposed autocompletion? I would like to be able to know where these options are coming from since sometimes they are the same option and the only difference is the path or the file? Thanks! |
I made it work, while reviewing the Which should have been picked here? but in my case it's in another location If its a bug I'll be happy to submit a PR with the fix. Thanks for the lib it's really cool @Saghen |
You might want to double check that you're sending |
You were right I was not passing the for _, server in pairs(servers) do
lspconfig[server].setup({
capabilities = require("blink.cmp").get_lsp_capabilities(),
})
end The LSP I'm using is TS_LS for TypeScript but still, this is the
|
Yeah |
Ahh that's really nice, just installed and it works, thanks a lot! |
The code has been slammed into the existing draw code, but I'll rework the drawing code in this PR too
Closes #174
Closes #154