mirror of
https://github.com/osyo-manga/vim-brightest.git
synced 2025-11-14 14:33:52 -05:00
17 lines
218 B
VimL
17 lines
218 B
VimL
scriptencoding utf-8
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
|
|
function! s:_vital_depends()
|
|
return [
|
|
\ "Coaster.Buffer",
|
|
\ "Coaster.Search",
|
|
\ "Coaster.Highlight"
|
|
\ ]
|
|
endfunction
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|