-
When doing something like go to definition or go to type definition
I see a quick pop-up and then it disappears and does its thing. There's some delay there and it's jarring/ugly. Is it a misconfiguration on my side or inherent to fzf-lua? Any idea how I could prevent the pop-up if there's only one result? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
LSP calls are asynchrony by default (to prevent hangs on slow LSP servers), when async we must open the interface fkrdf and wait for results, set |
Beta Was this translation helpful? Give feedback.
LSP calls are asynchrony by default (to prevent hangs on slow LSP servers), when async we must open the interface fkrdf and wait for results, set
lsp.async=false
andlsp.jump_to_single_result=true
to make it sync and jump immediately when only one result is found.