Hi Bram, 2016/5/6 Fri 0:19:06 UTC+9 Bram Moolenaar wrote: > Patch 7.4.1818 > Problem: Help completion adds @en to all matches except the first one. > Solution: Remove "break", go over all items. > Files: src/ex_getln.c
This patch has a problem when help files with multiple languages are installed. E.g. When @ja and @en are installed and 'helplang' is set to ja, :h screenrow()<C-D> screenrow() screenrow() But this should be: :h screenrow()<C-D> screenrow() screenrow()@en Or, when 'helplang' is not ja, this should be: :h screenrow()<C-D> screenrow()@ja screenrow()@en @en should not be removed, when there is a same help item for another language. BTW, I think that adding @en to all matches is harmless. Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
