-
I have a weird problem I cannot break down that is somewhat related to nvim-cmp and Ultisnips in conjunction with nvim-orgmode and my settings. I only encounter this using nvim-orgmode and it never appears in any other content. Whenever I open an org file and enter
I cannot see |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Can you tell me what do you get for |
Beta Was this translation helpful? Give feedback.
-
Oh boy! I accidently configured vim.g.UltiSnipsExpandTrigger = '<CR>' and in: cmp.setup ({
...
mapping = ...
['<CR>'] = cmp.mapping.confirm ({
behavior = cmp.ConfirmBehavior.Replace,
select = false
}), Removing the configuration of |
Beta Was this translation helpful? Give feedback.
Oh boy! I accidently configured
<CR>
twice 🙈 - once in the configuration for Ultisnips:and in:
Removing the configuration of
vim.g.UltiSnipsExpandTrigger = '<CR>'
solves the problem!