add linediff extension (#2757)

This commit is contained in:
Shad
2026-07-25 19:16:18 +02:00
committed by GitHub
parent 9e0beefd6e
commit e12b203f11
3 changed files with 25 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
" MIT License. Copyright (c) 2026 Shad
" vim: et ts=2 sts=2 sw=2
scriptencoding utf-8
function! airline#extensions#linediff#init(ext)
call a:ext.add_statusline_func('airline#extensions#linediff#apply')
endfunction
function! airline#extensions#linediff#apply(...)
if exists('b:differ.description')
let w:airline_section_c = b:differ.description
endif
endfunction