File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ statuscolumn.setup = function (config)
359
359
end
360
360
361
361
for _ , window in ipairs (statuscolumn .state .attached_windows ) do
362
- statuscolumn .update_id (window );
362
+ vim . w [ window ]. __scID = statuscolumn .update_id (window );
363
363
end
364
364
end
365
365
Original file line number Diff line number Diff line change @@ -600,7 +600,7 @@ statusline.setup = function (config)
600
600
end
601
601
602
602
for window , _ in pairs (statusline .state .attached_windows ) do
603
- statusline .update_id (window );
603
+ vim . w [ window ]. __slID = statusline .update_id (window );
604
604
end
605
605
end
606
606
Original file line number Diff line number Diff line change @@ -712,7 +712,7 @@ winbar.setup = function (config)
712
712
end
713
713
714
714
for window , _ in pairs (winbar .state .attached_windows ) do
715
- winbar .update_id (window );
715
+ vim . w [ window ]. __swID = winbar .update_id (window );
716
716
end
717
717
end
718
718
You can’t perform that action at this time.
0 commit comments