How can I disable blink in neotree? #789
Answered
by
Muizzyranking
Muizzyranking
asked this question in
Q&A
-
I can't seem to find the filetype for neotree input, I believed it was prompt and it is not working. |
Beta Was this translation helpful? Give feedback.
Answered by
Muizzyranking
Dec 27, 2024
Replies: 2 comments 2 replies
-
Disabling blink in |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Muizzyranking
-
In case anyone comes accross this and wondered what I did, here is what I did. {
"saghen/blink.cmp",
opts = {
enabled = function()
-- you list filetypes where you dob't want blink blink to work here
local disabled_filetypes = { "neo-tree-popup" } -- you can add extra fileypes you do not want blink enabled.
return not vim.tbl_contains(disabled_filetypes, vim.bo.filetype) and vim.b.completion ~= false
end,
},
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Disabling blink in
neo-tree-popup
solves it.