├── .gitmodules ├── README.md ├── convert.py ├── intellij-snippets └── resources │ ├── documents │ ├── angular.md │ ├── bootstrap.md │ ├── codeigniter.md │ ├── css.md │ ├── django.md │ ├── eruby.md │ ├── go.md │ ├── html.md │ ├── java.md │ ├── javascript-d3.md │ ├── javascript.es6.md │ ├── javascript.md │ ├── javascript2.md │ ├── jquery.md │ ├── laravel.md │ ├── markdown.md │ ├── node.md │ ├── php.md │ ├── rails.md │ ├── react.md │ ├── ruby.md │ ├── sass.md │ ├── scala.md │ └── sql.md │ └── templates │ ├── angular.xml │ ├── bootstrap.xml │ ├── codeigniter.xml │ ├── cs.xml │ ├── css.xml │ ├── django.xml │ ├── eruby.xml │ ├── go.xml │ ├── html.xml │ ├── java.xml │ ├── javascript-d3.xml │ ├── javascript-jquery.xml │ ├── javascript-react.xml │ ├── javascript.es6.xml │ ├── javascript.node.xml │ ├── javascript.xml │ ├── laravel.xml │ ├── markdown.xml │ ├── php.xml │ ├── rails.xml │ ├── ruby.xml │ ├── sass.xml │ ├── scala.xml │ └── sql.xml └── screencasts ├── ajax.gif ├── bootstrap.gif └── for.gif /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/convert.py -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/angular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/angular.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/bootstrap.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/codeigniter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/codeigniter.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/css.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/django.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/django.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/eruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/eruby.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/go.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/html.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/java.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/javascript-d3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/javascript-d3.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/javascript.es6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/javascript.es6.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/javascript.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/javascript2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/javascript2.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/jquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/jquery.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/laravel.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/markdown.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/node.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/php.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/rails.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/react.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/ruby.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/sass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/sass.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/scala.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/scala.md -------------------------------------------------------------------------------- /intellij-snippets/resources/documents/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/documents/sql.md -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/angular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/angular.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/bootstrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/bootstrap.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/codeigniter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/codeigniter.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/cs.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/css.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/css.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/django.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/django.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/eruby.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/eruby.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/go.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/go.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/html.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/html.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/java.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/java.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/javascript-d3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/javascript-d3.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/javascript-jquery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/javascript-jquery.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/javascript-react.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/javascript-react.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/javascript.es6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/javascript.es6.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/javascript.node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/javascript.node.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/javascript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/javascript.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/laravel.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/markdown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/markdown.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/php.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/rails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/rails.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/ruby.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/ruby.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/sass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/sass.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/scala.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/scala.xml -------------------------------------------------------------------------------- /intellij-snippets/resources/templates/sql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/intellij-snippets/resources/templates/sql.xml -------------------------------------------------------------------------------- /screencasts/ajax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/screencasts/ajax.gif -------------------------------------------------------------------------------- /screencasts/bootstrap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/screencasts/bootstrap.gif -------------------------------------------------------------------------------- /screencasts/for.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoinv/intellij-snippets/HEAD/screencasts/for.gif --------------------------------------------------------------------------------