Compare commits

..

3 Commits

Author SHA1 Message Date
446226f016
refactor(hm/price): remove nixpkgs config
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 34s
2024-12-22 17:18:31 -06:00
d28d7f3bad
fix(nvim): properly get markview state for toggling 2024-12-22 17:18:18 -06:00
84d3d2ac6d
fix(nvim): make blink.cmp correctly complete command line 2024-12-22 17:17:54 -06:00

View File

@ -53,7 +53,7 @@ return {
["<CR>"] = {
function(cmp)
if vim.api.nvim_get_mode().mode:lower() == "c" then
return cmp.accept({
return cmp.select_and_accept({
callback = function()
vim.api.nvim_feedkeys(
vim.api.nvim_replace_termcodes("<CR>", true, true, true),