I want to change the behavior of <Space> when the popup menu is open using this map
inoremap <expr> <Space> pumvisible() ? "\<Down>\<Enter>" : "\<Space>"
However, with this map my abbreviations no longer get triggered when terminated by a <Space>.
Is there anyway to get around this?
C-]in insert mode before the space – Christian Brabandt Aug 16 '18 at 05:26