summaryrefslogtreecommitdiffstats
path: root/after/autoload/styledcomplete.vim
blob: 14a5129dd1d73cc4f1081b7c3ab3f6b26a30806a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
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
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
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
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