Closed zbindenren closed 2 years ago
It would be great if mappings were taken from nvim-cmp configuration. Currently I have for example:
["<C-k>"] = cmp.mapping.select_prev_item(), ["<C-j>"] = cmp.mapping.select_next_item(),
But for cmp-cmdline I still have to use <tab>.
<tab>
["<C-k>"] = cmp.mapping(cmp.mapping.select_prev_item(), { 'i', 'c' }),
It would be great if mappings were taken from nvim-cmp configuration. Currently I have for example:
But for cmp-cmdline I still have to use
<tab>
.