Skip to content

Commit

Permalink
Merge branch 'bump'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nxllpointer committed Jan 10, 2025
2 parents 24e43dd + 946a8f8 commit 768d3b3
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 62 deletions.
110 changes: 55 additions & 55 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tide-nvim/lua/tide/mappings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ function M.blink()
preset = "enter", -- See https://github.com/Saghen/blink.cmp/blob/4cc0e2bc27fc5ff67f846808e42d3046e05c2f11/lua/blink/cmp/keymap.lua#L47
['<C-space>'] = {
'show',
require("blink.cmp.trigger.signature").show,
require("blink.cmp.signature.trigger").show,
'show_documentation', 'hide_documentation'
},
['<C-e>'] = {
vim.schedule_wrap(require("blink.cmp.trigger.signature").hide),
vim.schedule_wrap(require("blink.cmp.signature.trigger").hide),
'hide'
},
}
Expand Down
22 changes: 17 additions & 5 deletions tide-nvim/lua/tide/plugins/blink.lua
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
return {
"blink-cmp",
event = "LspAttach",
event = { "LspAttach", "CmdlineEnter" },
on_require = "blink.cmp",
after = function()
require("blink.cmp").setup {
fuzzy = {
prebuilt_binaries = {
download = false
}
},

keymap = require("tide.mappings").blink(),
trigger = { signature_help = { enabled = true } },
windows = {
autocomplete = {
selection = "manual"

signature = { enabled = true },

completion = {
list = {
selection = "manual";
}
},

sources = {
cmdline = {}
}
}
end
Expand Down

0 comments on commit 768d3b3

Please sign in to comment.