-
Contributing guidelines
Module(s)mini.completion QuestionSee the picture above. The top part is my config, below is yours... I think it can be solved here: -- local label_detail = (details.detail or '') .. (details.description or '')
local label_detail = details.detail or ''
label_detail = label_detail .. ((label_detail ~= '') and ' ' or '') .. (details.description or '')
label_detail = snippet_clue .. ((snippet_clue ~= '' and label_detail ~= '') and ' ' or '') .. label_detail
Slightly related: This feature request...) Would you allow a PR adding the space? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The current "no space" approach was taken directly from 'nvim-cmp'. And its roots are from
Sure, sounds good. But it should have the same type of symmetric condition as for between |
Beta Was this translation helpful? Give feedback.
Thanks! I will create the PR adding the space.