Skip to content

Instantly share code, notes, and snippets.

@othree
Created September 10, 2010 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save othree/573954 to your computer and use it in GitHub Desktop.
Save othree/573954 to your computer and use it in GitHub Desktop.
"" javascript behavior for acp
function AcpMeetsForJavaScript(context)
let matches = matchlist(a:context, '\(\k\{1}\)$')
if empty(matches)
return 0
endif
return 1
endfunction
"" html behavior for html
function AcpMeetsForHtmlOmni(context)
if g:acp_behaviorHtmlOmniLength >= 0
if a:context =~ '\(<\|<\/\|<[^>]\+ \|<[^>]\+=\"\)\k\{' .g:acp_behaviorHtmlOmniLength . ',}$'
return 1
elseif a:context =~ '\(\<\k\{1,}\(=\"\)\{0,1}\|\" \)$'
let cur = line('.')-1
while cur > 0
let lstr = getline(cur)
if lstr =~ '>[^>]*$'
return 0
elseif lstr =~ '<[^<]*$'
return 1
endif
let cur = cur-1
endwhile
return 0
endif
else
return 0
endif
endfunction
let behavs = { 'javascript': [], 'html': [] }
call add(behavs.javascript, {
\ 'command' : "\<C-x>\<C-u>",
\ 'completefunc' : 'acp#completeSnipmate',
\ 'meets' : 'acp#meetsForSnipmate',
\ 'onPopupClose' : 'acp#onPopupCloseSnipmate',
\ 'repeat' : 0,
\})
call add(behavs.javascript, {
\ 'command' : g:acp_behaviorKeywordCommand,
\ 'meets' : 'acp#meetsForKeyword',
\ 'repeat' : 0,
\ })
call add(behavs.javascript, {
\ 'command' : "\<C-x>\<C-o>",
\ 'meets' : 'AcpMeetsForJavaScript',
\ 'repeat' : 0,
\})
call add(behavs.html, {
\ 'command' : "\<C-x>\<C-o>",
\ 'meets' : 'AcpMeetsForHtmlOmni',
\ 'repeat' : 1,
\})
let g:acp_behavior = {}
call extend(g:acp_behavior, behavs, 'keep')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment