Skip to content

Commit

Permalink
Version 0.3@1: Recognize new keywords for jQuery 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nono authored and vim-scripts committed Nov 6, 2010
1 parent 3c78919 commit d321b05
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions syntax/jquery.vim
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
" Vim syntax file " Vim syntax file
" Language: jQuery " Language: jQuery
" Maintainer: Bruno Michel <brmichel@free.fr> " Maintainer: Bruno Michel <brmichel@free.fr>
" Last Change: 2009 Oct 10 " Last Change: Jan 14, 2010
" Version: 0.3 " Version: 0.3
" URL: http://jquery.com/ " URL: http://jquery.com/


Expand All @@ -16,18 +16,18 @@ syn match jQuery /jQuery\|\$/
syn match jFunc /\.\w\+(/ contains=@jFunctions syn match jFunc /\.\w\+(/ contains=@jFunctions


syn cluster jFunctions contains=jCore,jAttributes,jTraversing,jManipulation,jCSS,jEvents,jAjax,jUtilities,jEffects syn cluster jFunctions contains=jCore,jAttributes,jTraversing,jManipulation,jCSS,jEvents,jAjax,jUtilities,jEffects
syn keyword jCore contained each size length selector context eq get index syn keyword jCore contained each size length selector context eq get index toArray
syn keyword jCore contained data removeData queue dequeue syn keyword jCore contained data removeData clearQueue queue dequeue
syn keyword jCore contained extend noConflict syn keyword jCore contained extend noConflict
syn keyword jAttributes contained attr removeAttr addClass removeClass toggleClass html text val syn keyword jAttributes contained attr removeAttr addClass removeClass toggleClass html text val
syn keyword jTraversing contained eq filter is map not slice syn keyword jTraversing contained eq filter has is map not slice
syn keyword jTraversing contained add children closest contents find next nextAll parent parents prev prevAll siblings syn keyword jTraversing contained add children closest contents find next nextAll nextUntil parent parents parentsUntil prev prevAll prevUntil siblings
syn keyword jTraversing contained andSelf end syn keyword jTraversing contained andSelf end
syn keyword jManipulation contained append appendTo preprend prependTo syn keyword jManipulation contained append appendTo preprend prependTo
syn keyword jManipulation contained after before insertAfter insertBefore syn keyword jManipulation contained after before insertAfter insertBefore
syn keyword jManipulation contained wrap wrapAll wrapInner syn keyword jManipulation contained unwrap wrap wrapAll wrapInner
syn keyword jManipulation contained replaceWith replaceAll syn keyword jManipulation contained replaceWith replaceAll
syn keyword jManipulation contained empty remove syn keyword jManipulation contained detach empty remove
syn keyword jManipulation contained clone syn keyword jManipulation contained clone
syn keyword jCSS contained css syn keyword jCSS contained css
syn keyword jCSS contained offset offsetParent position scrollTop scrollLeft syn keyword jCSS contained offset offsetParent position scrollTop scrollLeft
Expand All @@ -36,18 +36,18 @@ syn keyword jEvents contained ready
syn keyword jEvents contained bind one trigger triggerHandler unbind syn keyword jEvents contained bind one trigger triggerHandler unbind
syn keyword jEvents contained live die syn keyword jEvents contained live die
syn keyword jEvents contained hover toggle syn keyword jEvents contained hover toggle
syn keyword jEvents contained blur change click dblclick error focus keydown keypress keyup load syn keyword jEvents contained blur change click dblclick error focus focusin focusout keydown keypress keyup load
syn keyword jEvents contained mousedown mouseenter mouseleave mousemove mouseout mouseover mouseup resize scroll select submit unload syn keyword jEvents contained mousedown mouseenter mouseleave mousemove mouseout mouseover mouseup resize scroll select submit unload
syn keyword jEffects contained show hide toggle syn keyword jEffects contained show hide toggle
syn keyword jEffects contained slideDown slideUp slideToggle syn keyword jEffects contained slideDown slideUp slideToggle
syn keyword jEffects contained fadeIn fadeOut fadeTo syn keyword jEffects contained fadeIn fadeOut fadeTo
syn keyword jEffects contained animate stop syn keyword jEffects contained animate stop delay
syn keyword jAjax contained ajax load get getJSON getScript post syn keyword jAjax contained ajax load get getJSON getScript post
syn keyword jAjax contained ajaxComplete ajaxError ajaxSend ajaxStart ajaxStop ajaxSuccess syn keyword jAjax contained ajaxComplete ajaxError ajaxSend ajaxStart ajaxStop ajaxSuccess
syn keyword jAjax contained ajaxSetup serialize serializeArray syn keyword jAjax contained ajaxSetup serialize serializeArray
syn keyword jUtilities contained support browser boxModel syn keyword jUtilities contained support browser boxModel
syn keyword jUtilities contained extend grep makeArray map inArray merge unique syn keyword jUtilities contained extend grep makeArray map inArray merge noop proxy unique
syn keyword jUtilities contained isArray isFunction syn keyword jUtilities contained isArray isEmptyObject isFunction isPlainObject
syn keyword jUtilities contained trim param syn keyword jUtilities contained trim param




Expand Down

0 comments on commit d321b05

Please sign in to comment.