Hi, Some code references are below.
On Tue, Jun 25, 2019 at 7:46 PM Yegappan Lakshmanan <[email protected]> wrote: > > Hi, > > When multiple signs with icons are placed on the same line, then a > different icon is drawn in the sign column using the > netbeans_draw_multisign_indicator() function. > This function draws the icon only if a netbeans connection is > present (NETBEANS_OPEN). > https://github.com/vim/vim/blob/master/src/netbeans.c#L3000 > > The screen line refresh function (win_line) always checks whether > multiple signs are present on a line using the buf_signcount() function. > https://github.com/vim/vim/blob/master/src/screen.c#L3105 > > This function counts the number of signs with icons placed on a line. > https://github.com/vim/vim/blob/master/src/sign.c#L623 - Yegappan > > This is done even though the netbeans connection is not present. > If the netbeans connection is not present, then there is no need to > count the number of signs as the multisign indicator will not be > displayed. > > Does anyone see a problem if I change win_line() to call buf_signcount() > only if the netbeans connection is present? > > Thanks, > Yegappan -- -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/CAAW7x7%3DRp4oL3k%3D%3Du8%2BB9A_ncJNAONvDQ%2B7VFWZGbH8iGOgoRA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
