[
  {
    "path": ".ctags",
    "content": "--langdef=Elixir\n--langmap=Elixir:.ex.exs\n--regex-Elixir=/^[ \\t]*def(p?)[ \\t]+([a-z_][a-zA-Z0-9_?!]*)/\\2/f,functions,functions (def ...)/\n--regex-Elixir=/^[ \\t]*defcallback[ \\t]+([a-z_][a-zA-Z0-9_?!]*)/\\1/c,callbacks,callbacks (defcallback ...)/\n--regex-Elixir=/^[ \\t]*defdelegate[ \\t]+([a-z_][a-zA-Z0-9_?!]*)/\\1/d,delegates,delegates (defdelegate ...)/\n--regex-Elixir=/^[ \\t]*defexception[ \\t]+([A-Z][a-zA-Z0-9_]*\\.)*([A-Z][a-zA-Z0-9_?!]*)/\\2/e,exceptions,exceptions (defexception ...)/\n--regex-Elixir=/^[ \\t]*defimpl[ \\t]+([A-Z][a-zA-Z0-9_]*\\.)*([A-Z][a-zA-Z0-9_?!]*)/\\2/i,implementations,implementations (defimpl ...)/\n--regex-Elixir=/^[ \\t]*defmacro(p?)[ \\t]+([a-z_][a-zA-Z0-9_?!]*)\\(/\\2/a,macros,macros (defmacro ...)/\n--regex-Elixir=/^[ \\t]*defmacro(p?)[ \\t]+([a-zA-Z0-9_?!]+)?[ \\t]+([^ \\tA-Za-z0-9_]+)[ \\t]*[a-zA-Z0-9_!?!]/\\3/o,operators,operators (e.g. \"defmacro a <<< b\")/\n--regex-Elixir=/^[ \\t]*defmodule[ \\t]+([A-Z][a-zA-Z0-9_]*\\.)*([A-Z][a-zA-Z0-9_?!]*)/\\2/m,modules,modules (defmodule ...)/\n--regex-Elixir=/^[ \\t]*defprotocol[ \\t]+([A-Z][a-zA-Z0-9_]*\\.)*([A-Z][a-zA-Z0-9_?!]*)/\\2/p,protocols,protocols (defprotocol...)/\n--regex-Elixir=/^[ \\t]*Record\\.defrecord[ \\t]+:([a-zA-Z0-9_]+)/\\1/r,records,records (defrecord...)/\n--regex-Elixir=/^[ \\t]*test[ \\t]+\\\"([a-z_][a-zA-Z0-9_?! ]*)\\\"*/\\1/t,tests,tests (test ...)/\n"
  },
  {
    "path": "LICENSE",
    "content": "This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to <http://unlicense.org>\n"
  },
  {
    "path": "README.md",
    "content": "ctags-elixir\n============\n\n[Exuberant CTags](http://ctags.sourceforge.net/) support for the\n[Elixir](http://elixir-lang.org/) language.\n\nThis means that if you are writing your Elixir code using an editor\nthat supports Ctags (e.g.  Vim, Emacs, Sublime Text, and many others), you\ncan easily jump to the definition of any symbol.  Handy for navigating \nyour way around a large, unfamiliar source tree.\n\nTo enable:\n----------\n\nCopy or append this `.ctags` file to your own `~/.ctags`.\n\nOnce you have done that, you can build tags for an Elixir app with the usual\nctags command line: cd into your project, and then\n\n    $ ctags -R .\n\nWhat is this Exuberant Ctags thing and how do I use it?\n-------------------------------------------------------\n\nWell, that's a separate topic, really.  But here's a quick start.\n\nCtags is a tool to make it easier to implement \"go to definition\" in lots\nof different text editors and for lots of different programming languages.\nIt has parsers for many languages, and it generates a simple `tags` file\nthat any editor can read in order to find the file and line where a given\nsymbol is defined.\n\nThe original Ctags supported only C (I think).  Exuberant Ctags is a rewrite\nthat supports many more languages.\n\n**Install Exuberant Ctags**\n\nIf you don't already have Exuberant Ctags, [install it](http://ctags.sourceforge.net/).\nOn OSX, the best way is using [brew](http://mxcl.github.com/homebrew/):\n\n    $ brew install ctags\n    \nOn Windows, the best way is using [chocolatey](https://chocolatey.org/):\n\n    choco install ctags\n\n**Vim**\n\nIf you are using the [vim](http://www.vim.org/) editor:\n\n1. Do the above `ctags -R .` command\n2. Open an Elixir source file in vim.\n3. Put the cursor on any symbol name, and type the `^]` (Control-]) key.\n   The cursor will jump to the definition of that symbol.\n4. Type `^O` (or `^T`) to return cursor to previous location.\n\n**Sublime Text 2**\n\nIf you are using [Sublime Text](http://www.sublimetext.com/), there is a\n[package](https://github.com/SublimeText/CTags) you can install that\nadds CTags support.  I haven't tried it, but this is what you would do:\n\n1. If you have not already done so, install [Sublime Package\n   Control](http://wbond.net/sublime_packages/package_control).\n2. From Sublime Text, Cmd-Shift-P, \"install package\"\n3. Pick \"CTags\" from the list of packages, and install it\n4. Put the cursor on any symbol name, and then type `^T^T`.  This\n   should jump to the symbol definition.\n5. See the rest of the key bindings [here](https://github.com/SublimeText/CTags).\n\n**Other editors**\n\nThere are also other editors that support Ctags.  Check your editor's\ndocumentation, or Google for it.\n\nFeedback\n--------\n\nFeedback is more than welcome; I'm new to the Elixir language, so I\nprobably got some things wrong.\n"
  }
]