Skip to content

Instantly share code, notes, and snippets.

@tobym
Created November 13, 2009 16:47
Show Gist options
  • Save tobym/233961 to your computer and use it in GitHub Desktop.
Save tobym/233961 to your computer and use it in GitHub Desktop.
alternate JavaScript langmap for exuberant ctags
--langdef=js
--langmap=js:.js
--regex-js=/([A-Za-z0-9._$]+)[ \t]*[:=][ \t]*\{/\1/,object/
--regex-js=/([A-Za-z0-9._$()]+)[ \t]*[:=][ \t]*function[ \t]*\(/\1/,function/
--regex-js=/function[ \t]+([A-Za-z0-9._$]+)[ \t]*\(([^)])\)/\1/,function/
--regex-js=/([A-Za-z0-9._$]+)[ \t]*[:=][ \t]*\[/\1/,array/
--regex-js=/([^= ]+)[ \t]*=[ \t]*[^"]'[^']*/\1/,string/
--regex-js=/([^= ]+)[ \t]*=[ \t]*[^']"[^"]*/\1/,string/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment