mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-10 04:23:51 -05:00
Update
This commit is contained in:
@@ -61,3 +61,24 @@ fun! styledcomplete#CompleteSC(findstart, base)
|
|||||||
return s:funcref(a:findstart, a:base)
|
return s:funcref(a:findstart, a:base)
|
||||||
endif
|
endif
|
||||||
endfun
|
endfun
|
||||||
|
if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'styled-components') != -1
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Vim completion script
|
||||||
|
" Language: styled-components (js/ts)
|
||||||
|
" Maintainer: Karl Fleischmann <fleischmann.karl@gmail.com>
|
||||||
|
" URL: https://github.com/styled-components/vim-styled-components
|
||||||
|
|
||||||
|
fun! styledcomplete#CompleteSC(findstart, base)
|
||||||
|
if IsStyledDefinition(line('.'))
|
||||||
|
return csscomplete#CompleteCSS(a:findstart, a:base)
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Only trigger original omnifunc if it was set in the first place
|
||||||
|
if exists('b:prevofu')
|
||||||
|
" create a funcref to call with the previous omnicomplete function
|
||||||
|
let s:funcref = function(b:prevofu)
|
||||||
|
return s:funcref(a:findstart, a:base)
|
||||||
|
endif
|
||||||
|
endfun
|
||||||
|
|||||||
Reference in New Issue
Block a user