blob: c4f774f6c4b818af66897bb676d8ff0131788a2c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
if !exists('g:loaded_obsession')
finish
endif
let g:lightline.component_function.obsession = 'LightLineSession'
function! LightLineSession()
let l:indicator = ObsessionStatus('active', 'paused')
return l:indicator ? '[obs '.l:indicator.']' : ''
endfunction
|