├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── README.md ├── UltiSnips ├── README ├── ada.snippets ├── all.snippets ├── bib.snippets ├── bindzone.snippets ├── blade.snippets ├── c.snippets ├── coffee-jasmine.snippets ├── coffee-react.snippets ├── coffee.snippets ├── cpp.snippets ├── crystal.snippets ├── cs.snippets ├── css.snippets ├── cuda.snippets ├── d.snippets ├── django.snippets ├── eelixir.snippets ├── ejs.snippets ├── elm.snippets ├── erlang.snippets ├── eruby.snippets ├── gitcommit.snippets ├── go.snippets ├── haskell.snippets ├── help.snippets ├── html.snippets ├── html_minimal.snippets ├── htmldjango.snippets ├── htmljinja.snippets ├── java.snippets ├── javascript-angular.snippets ├── javascript-ember.snippets ├── javascript-jasmine-arrow.snippets ├── javascript-jsdoc.snippets ├── javascript-node.snippets ├── javascript.snippets ├── javascript_react.snippets ├── jinja2.snippets ├── json.snippets ├── julia.snippets ├── ledger.snippets ├── lhaskell.snippets ├── lua.snippets ├── mako.snippets ├── markdown.snippets ├── matlab.snippets ├── objc.snippets ├── ocaml.snippets ├── octave.snippets ├── pandoc.snippets ├── perl.snippets ├── php-laravel.snippets ├── php-phpspec.snippets ├── php-symfony2.snippets ├── php.snippets ├── plsql.snippets ├── proto.snippets ├── puppet.snippets ├── python.snippets ├── r.snippets ├── rails.snippets ├── rnoweb.snippets ├── robot.snippets ├── rst.snippets ├── ruby.snippets ├── rust.snippets ├── sh.snippets ├── smarty.snippets ├── snippets.snippets ├── soy.snippets ├── supercollider.snippets ├── svelte.snippets ├── tcl.snippets ├── tex.snippets ├── texmath.snippets ├── typescript.snippets ├── typescript_react.snippets ├── vim.snippets ├── vue.snippets ├── xhtml.snippets ├── xml.snippets └── zsh.snippets ├── addon-info.json ├── autoload └── vim_snippets.vim ├── plugin └── vimsnippets.vim ├── pythonx ├── javascript_snippets.py └── vimsnippets.py ├── snippets ├── _.snippets ├── actionscript.snippets ├── ada.snippets ├── all.snippets ├── alpaca.snippets ├── apache.snippets ├── arduino.snippets ├── asm.snippets ├── autoit.snippets ├── awk.snippets ├── bash.snippets ├── c.snippets ├── chef.snippets ├── clojure.snippets ├── cmake.snippets ├── codeigniter.snippets ├── coffee │ ├── angular_coffee.snippets │ ├── coffee.snippets │ ├── jquery_coffee.snippets │ └── requirejs_coffee.snippets ├── cpp.snippets ├── crystal.snippets ├── cs.snippets ├── css.snippets ├── cuda.snippets ├── d.snippets ├── dart-flutter.snippets ├── dart.snippets ├── diff.snippets ├── django.snippets ├── dosini.snippets ├── eelixir.snippets ├── elixir.snippets ├── elm.snippets ├── erlang.snippets ├── eruby.snippets ├── falcon.snippets ├── fortran.snippets ├── freemarker.snippets ├── fsharp.snippets ├── gdscript.snippets ├── gitcommit.snippets ├── gleam.snippets ├── go.snippets ├── haml.snippets ├── handlebars.snippets ├── haskell.snippets ├── heex.snippets ├── helm.snippets ├── html.snippets ├── htmldjango.snippets ├── htmltornado.snippets ├── idris.snippets ├── jade.snippets ├── java.snippets ├── javascript-bemjson.snippets ├── javascript-d3.snippets ├── javascript-jasmine.snippets ├── javascript-mocha.snippets ├── javascript-openui5.snippets ├── javascript │ ├── javascript-jquery.snippets │ ├── javascript-react.snippets │ ├── javascript-redux.snippets │ ├── javascript-requirejs.snippets │ ├── javascript.node.snippets │ └── javascript.snippets ├── jenkins.snippets ├── jinja.snippets ├── jsp.snippets ├── julia.snippets ├── kotlin.snippets ├── laravel.snippets ├── ledger.snippets ├── lfe.snippets ├── liquid.snippets ├── lpc.snippets ├── ls.snippets ├── lua.snippets ├── make.snippets ├── mako.snippets ├── markdown.snippets ├── matlab.snippets ├── mustache.snippets ├── objc.snippets ├── ocaml.snippets ├── octave.snippets ├── openfoam.snippets ├── org.snippets ├── pandoc.snippets ├── perl.snippets ├── perl6.snippets ├── phoenix.snippets ├── php.snippets ├── plsql.snippets ├── po.snippets ├── processing.snippets ├── progress.snippets ├── ps1.snippets ├── puppet.snippets ├── purescript.snippets ├── python.snippets ├── r.snippets ├── racket.snippets ├── rails.snippets ├── reason.snippets ├── rmd.snippets ├── rst.snippets ├── ruby.snippets ├── rust.snippets ├── sass.snippets ├── scala.snippets ├── scheme.snippets ├── scss.snippets ├── sh.snippets ├── simplemvcf.snippets ├── slim.snippets ├── smarty.snippets ├── snippets.snippets ├── sql.snippets ├── stylus.snippets ├── supercollider.snippets ├── svelte.snippets ├── systemverilog.snippets ├── tcl.snippets ├── tex.snippets ├── textile.snippets ├── twig.snippets ├── typescript.snippets ├── typescriptreact.snippets ├── verilog.snippets ├── vhdl.snippets ├── vim.snippets ├── vue.snippets ├── xml.snippets ├── xslt.snippets ├── yii-chtml.snippets ├── yii.snippets └── zsh.snippets └── tests.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/README.md -------------------------------------------------------------------------------- /UltiSnips/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/README -------------------------------------------------------------------------------- /UltiSnips/ada.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/ada.snippets -------------------------------------------------------------------------------- /UltiSnips/all.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/all.snippets -------------------------------------------------------------------------------- /UltiSnips/bib.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/bib.snippets -------------------------------------------------------------------------------- /UltiSnips/bindzone.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/bindzone.snippets -------------------------------------------------------------------------------- /UltiSnips/blade.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/blade.snippets -------------------------------------------------------------------------------- /UltiSnips/c.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/c.snippets -------------------------------------------------------------------------------- /UltiSnips/coffee-jasmine.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/coffee-jasmine.snippets -------------------------------------------------------------------------------- /UltiSnips/coffee-react.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/coffee-react.snippets -------------------------------------------------------------------------------- /UltiSnips/coffee.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/coffee.snippets -------------------------------------------------------------------------------- /UltiSnips/cpp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/cpp.snippets -------------------------------------------------------------------------------- /UltiSnips/crystal.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/crystal.snippets -------------------------------------------------------------------------------- /UltiSnips/cs.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/cs.snippets -------------------------------------------------------------------------------- /UltiSnips/css.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/css.snippets -------------------------------------------------------------------------------- /UltiSnips/cuda.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends cpp 4 | 5 | # vim:ft=snippets: 6 | -------------------------------------------------------------------------------- /UltiSnips/d.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/d.snippets -------------------------------------------------------------------------------- /UltiSnips/django.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/django.snippets -------------------------------------------------------------------------------- /UltiSnips/eelixir.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/eelixir.snippets -------------------------------------------------------------------------------- /UltiSnips/ejs.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/ejs.snippets -------------------------------------------------------------------------------- /UltiSnips/elm.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/elm.snippets -------------------------------------------------------------------------------- /UltiSnips/erlang.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/erlang.snippets -------------------------------------------------------------------------------- /UltiSnips/eruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/eruby.snippets -------------------------------------------------------------------------------- /UltiSnips/gitcommit.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/gitcommit.snippets -------------------------------------------------------------------------------- /UltiSnips/go.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/go.snippets -------------------------------------------------------------------------------- /UltiSnips/haskell.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/haskell.snippets -------------------------------------------------------------------------------- /UltiSnips/help.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/help.snippets -------------------------------------------------------------------------------- /UltiSnips/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/html.snippets -------------------------------------------------------------------------------- /UltiSnips/html_minimal.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/html_minimal.snippets -------------------------------------------------------------------------------- /UltiSnips/htmldjango.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/htmldjango.snippets -------------------------------------------------------------------------------- /UltiSnips/htmljinja.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends html, jinja2 4 | -------------------------------------------------------------------------------- /UltiSnips/java.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/java.snippets -------------------------------------------------------------------------------- /UltiSnips/javascript-angular.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/javascript-angular.snippets -------------------------------------------------------------------------------- /UltiSnips/javascript-ember.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/javascript-ember.snippets -------------------------------------------------------------------------------- /UltiSnips/javascript-jasmine-arrow.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/javascript-jasmine-arrow.snippets -------------------------------------------------------------------------------- /UltiSnips/javascript-jsdoc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/javascript-jsdoc.snippets -------------------------------------------------------------------------------- /UltiSnips/javascript-node.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/javascript-node.snippets -------------------------------------------------------------------------------- /UltiSnips/javascript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/javascript.snippets -------------------------------------------------------------------------------- /UltiSnips/javascript_react.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/javascript_react.snippets -------------------------------------------------------------------------------- /UltiSnips/jinja2.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/jinja2.snippets -------------------------------------------------------------------------------- /UltiSnips/json.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/json.snippets -------------------------------------------------------------------------------- /UltiSnips/julia.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/julia.snippets -------------------------------------------------------------------------------- /UltiSnips/ledger.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/ledger.snippets -------------------------------------------------------------------------------- /UltiSnips/lhaskell.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends haskell 4 | -------------------------------------------------------------------------------- /UltiSnips/lua.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/lua.snippets -------------------------------------------------------------------------------- /UltiSnips/mako.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/mako.snippets -------------------------------------------------------------------------------- /UltiSnips/markdown.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/markdown.snippets -------------------------------------------------------------------------------- /UltiSnips/matlab.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/matlab.snippets -------------------------------------------------------------------------------- /UltiSnips/objc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/objc.snippets -------------------------------------------------------------------------------- /UltiSnips/ocaml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/ocaml.snippets -------------------------------------------------------------------------------- /UltiSnips/octave.snippets: -------------------------------------------------------------------------------- 1 | extends matlab 2 | 3 | -------------------------------------------------------------------------------- /UltiSnips/pandoc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/pandoc.snippets -------------------------------------------------------------------------------- /UltiSnips/perl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/perl.snippets -------------------------------------------------------------------------------- /UltiSnips/php-laravel.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/php-laravel.snippets -------------------------------------------------------------------------------- /UltiSnips/php-phpspec.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/php-phpspec.snippets -------------------------------------------------------------------------------- /UltiSnips/php-symfony2.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/php-symfony2.snippets -------------------------------------------------------------------------------- /UltiSnips/php.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/php.snippets -------------------------------------------------------------------------------- /UltiSnips/plsql.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/plsql.snippets -------------------------------------------------------------------------------- /UltiSnips/proto.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/proto.snippets -------------------------------------------------------------------------------- /UltiSnips/puppet.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/puppet.snippets -------------------------------------------------------------------------------- /UltiSnips/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/python.snippets -------------------------------------------------------------------------------- /UltiSnips/r.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/r.snippets -------------------------------------------------------------------------------- /UltiSnips/rails.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/rails.snippets -------------------------------------------------------------------------------- /UltiSnips/rnoweb.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends tex, r 4 | -------------------------------------------------------------------------------- /UltiSnips/robot.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/robot.snippets -------------------------------------------------------------------------------- /UltiSnips/rst.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/rst.snippets -------------------------------------------------------------------------------- /UltiSnips/ruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/ruby.snippets -------------------------------------------------------------------------------- /UltiSnips/rust.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/rust.snippets -------------------------------------------------------------------------------- /UltiSnips/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/sh.snippets -------------------------------------------------------------------------------- /UltiSnips/smarty.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/smarty.snippets -------------------------------------------------------------------------------- /UltiSnips/snippets.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/snippets.snippets -------------------------------------------------------------------------------- /UltiSnips/soy.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/soy.snippets -------------------------------------------------------------------------------- /UltiSnips/supercollider.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/supercollider.snippets -------------------------------------------------------------------------------- /UltiSnips/svelte.snippets: -------------------------------------------------------------------------------- 1 | extends html, javascript, css 2 | -------------------------------------------------------------------------------- /UltiSnips/tcl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/tcl.snippets -------------------------------------------------------------------------------- /UltiSnips/tex.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/tex.snippets -------------------------------------------------------------------------------- /UltiSnips/texmath.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/texmath.snippets -------------------------------------------------------------------------------- /UltiSnips/typescript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/typescript.snippets -------------------------------------------------------------------------------- /UltiSnips/typescript_react.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/typescript_react.snippets -------------------------------------------------------------------------------- /UltiSnips/vim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/vim.snippets -------------------------------------------------------------------------------- /UltiSnips/vue.snippets: -------------------------------------------------------------------------------- 1 | extends html, javascript, css 2 | -------------------------------------------------------------------------------- /UltiSnips/xhtml.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends html 4 | -------------------------------------------------------------------------------- /UltiSnips/xml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/xml.snippets -------------------------------------------------------------------------------- /UltiSnips/zsh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/UltiSnips/zsh.snippets -------------------------------------------------------------------------------- /addon-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/addon-info.json -------------------------------------------------------------------------------- /autoload/vim_snippets.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/autoload/vim_snippets.vim -------------------------------------------------------------------------------- /plugin/vimsnippets.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/plugin/vimsnippets.vim -------------------------------------------------------------------------------- /pythonx/javascript_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/pythonx/javascript_snippets.py -------------------------------------------------------------------------------- /pythonx/vimsnippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/pythonx/vimsnippets.py -------------------------------------------------------------------------------- /snippets/_.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/_.snippets -------------------------------------------------------------------------------- /snippets/actionscript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/actionscript.snippets -------------------------------------------------------------------------------- /snippets/ada.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/ada.snippets -------------------------------------------------------------------------------- /snippets/all.snippets: -------------------------------------------------------------------------------- 1 | extends _ 2 | -------------------------------------------------------------------------------- /snippets/alpaca.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/alpaca.snippets -------------------------------------------------------------------------------- /snippets/apache.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/apache.snippets -------------------------------------------------------------------------------- /snippets/arduino.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/arduino.snippets -------------------------------------------------------------------------------- /snippets/asm.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/asm.snippets -------------------------------------------------------------------------------- /snippets/autoit.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/autoit.snippets -------------------------------------------------------------------------------- /snippets/awk.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/awk.snippets -------------------------------------------------------------------------------- /snippets/bash.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/bash.snippets -------------------------------------------------------------------------------- /snippets/c.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/c.snippets -------------------------------------------------------------------------------- /snippets/chef.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/chef.snippets -------------------------------------------------------------------------------- /snippets/clojure.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/clojure.snippets -------------------------------------------------------------------------------- /snippets/cmake.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/cmake.snippets -------------------------------------------------------------------------------- /snippets/codeigniter.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/codeigniter.snippets -------------------------------------------------------------------------------- /snippets/coffee/angular_coffee.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/coffee/angular_coffee.snippets -------------------------------------------------------------------------------- /snippets/coffee/coffee.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/coffee/coffee.snippets -------------------------------------------------------------------------------- /snippets/coffee/jquery_coffee.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/coffee/jquery_coffee.snippets -------------------------------------------------------------------------------- /snippets/coffee/requirejs_coffee.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/coffee/requirejs_coffee.snippets -------------------------------------------------------------------------------- /snippets/cpp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/cpp.snippets -------------------------------------------------------------------------------- /snippets/crystal.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/crystal.snippets -------------------------------------------------------------------------------- /snippets/cs.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/cs.snippets -------------------------------------------------------------------------------- /snippets/css.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/css.snippets -------------------------------------------------------------------------------- /snippets/cuda.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/cuda.snippets -------------------------------------------------------------------------------- /snippets/d.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/d.snippets -------------------------------------------------------------------------------- /snippets/dart-flutter.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/dart-flutter.snippets -------------------------------------------------------------------------------- /snippets/dart.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/dart.snippets -------------------------------------------------------------------------------- /snippets/diff.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/diff.snippets -------------------------------------------------------------------------------- /snippets/django.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/django.snippets -------------------------------------------------------------------------------- /snippets/dosini.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/dosini.snippets -------------------------------------------------------------------------------- /snippets/eelixir.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/eelixir.snippets -------------------------------------------------------------------------------- /snippets/elixir.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/elixir.snippets -------------------------------------------------------------------------------- /snippets/elm.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/elm.snippets -------------------------------------------------------------------------------- /snippets/erlang.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/erlang.snippets -------------------------------------------------------------------------------- /snippets/eruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/eruby.snippets -------------------------------------------------------------------------------- /snippets/falcon.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/falcon.snippets -------------------------------------------------------------------------------- /snippets/fortran.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/fortran.snippets -------------------------------------------------------------------------------- /snippets/freemarker.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/freemarker.snippets -------------------------------------------------------------------------------- /snippets/fsharp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/fsharp.snippets -------------------------------------------------------------------------------- /snippets/gdscript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/gdscript.snippets -------------------------------------------------------------------------------- /snippets/gitcommit.snippets: -------------------------------------------------------------------------------- 1 | snippet co 2 | Co-authored-by: ${1} <${2}> 3 | -------------------------------------------------------------------------------- /snippets/gleam.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/gleam.snippets -------------------------------------------------------------------------------- /snippets/go.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/go.snippets -------------------------------------------------------------------------------- /snippets/haml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/haml.snippets -------------------------------------------------------------------------------- /snippets/handlebars.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/handlebars.snippets -------------------------------------------------------------------------------- /snippets/haskell.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/haskell.snippets -------------------------------------------------------------------------------- /snippets/heex.snippets: -------------------------------------------------------------------------------- 1 | extends eelixir 2 | -------------------------------------------------------------------------------- /snippets/helm.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/helm.snippets -------------------------------------------------------------------------------- /snippets/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/html.snippets -------------------------------------------------------------------------------- /snippets/htmldjango.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/htmldjango.snippets -------------------------------------------------------------------------------- /snippets/htmltornado.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/htmltornado.snippets -------------------------------------------------------------------------------- /snippets/idris.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/idris.snippets -------------------------------------------------------------------------------- /snippets/jade.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/jade.snippets -------------------------------------------------------------------------------- /snippets/java.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/java.snippets -------------------------------------------------------------------------------- /snippets/javascript-bemjson.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript-bemjson.snippets -------------------------------------------------------------------------------- /snippets/javascript-d3.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript-d3.snippets -------------------------------------------------------------------------------- /snippets/javascript-jasmine.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript-jasmine.snippets -------------------------------------------------------------------------------- /snippets/javascript-mocha.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript-mocha.snippets -------------------------------------------------------------------------------- /snippets/javascript-openui5.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript-openui5.snippets -------------------------------------------------------------------------------- /snippets/javascript/javascript-jquery.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript/javascript-jquery.snippets -------------------------------------------------------------------------------- /snippets/javascript/javascript-react.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript/javascript-react.snippets -------------------------------------------------------------------------------- /snippets/javascript/javascript-redux.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript/javascript-redux.snippets -------------------------------------------------------------------------------- /snippets/javascript/javascript-requirejs.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript/javascript-requirejs.snippets -------------------------------------------------------------------------------- /snippets/javascript/javascript.node.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript/javascript.node.snippets -------------------------------------------------------------------------------- /snippets/javascript/javascript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/javascript/javascript.snippets -------------------------------------------------------------------------------- /snippets/jenkins.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/jenkins.snippets -------------------------------------------------------------------------------- /snippets/jinja.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/jinja.snippets -------------------------------------------------------------------------------- /snippets/jsp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/jsp.snippets -------------------------------------------------------------------------------- /snippets/julia.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/julia.snippets -------------------------------------------------------------------------------- /snippets/kotlin.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/kotlin.snippets -------------------------------------------------------------------------------- /snippets/laravel.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/laravel.snippets -------------------------------------------------------------------------------- /snippets/ledger.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/ledger.snippets -------------------------------------------------------------------------------- /snippets/lfe.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/lfe.snippets -------------------------------------------------------------------------------- /snippets/liquid.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/liquid.snippets -------------------------------------------------------------------------------- /snippets/lpc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/lpc.snippets -------------------------------------------------------------------------------- /snippets/ls.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/ls.snippets -------------------------------------------------------------------------------- /snippets/lua.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/lua.snippets -------------------------------------------------------------------------------- /snippets/make.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/make.snippets -------------------------------------------------------------------------------- /snippets/mako.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/mako.snippets -------------------------------------------------------------------------------- /snippets/markdown.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/markdown.snippets -------------------------------------------------------------------------------- /snippets/matlab.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/matlab.snippets -------------------------------------------------------------------------------- /snippets/mustache.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/mustache.snippets -------------------------------------------------------------------------------- /snippets/objc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/objc.snippets -------------------------------------------------------------------------------- /snippets/ocaml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/ocaml.snippets -------------------------------------------------------------------------------- /snippets/octave.snippets: -------------------------------------------------------------------------------- 1 | extends matlab 2 | 3 | -------------------------------------------------------------------------------- /snippets/openfoam.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/openfoam.snippets -------------------------------------------------------------------------------- /snippets/org.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/org.snippets -------------------------------------------------------------------------------- /snippets/pandoc.snippets: -------------------------------------------------------------------------------- 1 | extends markdown 2 | -------------------------------------------------------------------------------- /snippets/perl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/perl.snippets -------------------------------------------------------------------------------- /snippets/perl6.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/perl6.snippets -------------------------------------------------------------------------------- /snippets/phoenix.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/phoenix.snippets -------------------------------------------------------------------------------- /snippets/php.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/php.snippets -------------------------------------------------------------------------------- /snippets/plsql.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/plsql.snippets -------------------------------------------------------------------------------- /snippets/po.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/po.snippets -------------------------------------------------------------------------------- /snippets/processing.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/processing.snippets -------------------------------------------------------------------------------- /snippets/progress.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/progress.snippets -------------------------------------------------------------------------------- /snippets/ps1.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/ps1.snippets -------------------------------------------------------------------------------- /snippets/puppet.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/puppet.snippets -------------------------------------------------------------------------------- /snippets/purescript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/purescript.snippets -------------------------------------------------------------------------------- /snippets/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/python.snippets -------------------------------------------------------------------------------- /snippets/r.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/r.snippets -------------------------------------------------------------------------------- /snippets/racket.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/racket.snippets -------------------------------------------------------------------------------- /snippets/rails.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/rails.snippets -------------------------------------------------------------------------------- /snippets/reason.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/reason.snippets -------------------------------------------------------------------------------- /snippets/rmd.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/rmd.snippets -------------------------------------------------------------------------------- /snippets/rst.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/rst.snippets -------------------------------------------------------------------------------- /snippets/ruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/ruby.snippets -------------------------------------------------------------------------------- /snippets/rust.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/rust.snippets -------------------------------------------------------------------------------- /snippets/sass.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/sass.snippets -------------------------------------------------------------------------------- /snippets/scala.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/scala.snippets -------------------------------------------------------------------------------- /snippets/scheme.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/scheme.snippets -------------------------------------------------------------------------------- /snippets/scss.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/scss.snippets -------------------------------------------------------------------------------- /snippets/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/sh.snippets -------------------------------------------------------------------------------- /snippets/simplemvcf.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/simplemvcf.snippets -------------------------------------------------------------------------------- /snippets/slim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/slim.snippets -------------------------------------------------------------------------------- /snippets/smarty.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/smarty.snippets -------------------------------------------------------------------------------- /snippets/snippets.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/snippets.snippets -------------------------------------------------------------------------------- /snippets/sql.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/sql.snippets -------------------------------------------------------------------------------- /snippets/stylus.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/stylus.snippets -------------------------------------------------------------------------------- /snippets/supercollider.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/supercollider.snippets -------------------------------------------------------------------------------- /snippets/svelte.snippets: -------------------------------------------------------------------------------- 1 | extends html, javascript, css 2 | -------------------------------------------------------------------------------- /snippets/systemverilog.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/systemverilog.snippets -------------------------------------------------------------------------------- /snippets/tcl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/tcl.snippets -------------------------------------------------------------------------------- /snippets/tex.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/tex.snippets -------------------------------------------------------------------------------- /snippets/textile.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/textile.snippets -------------------------------------------------------------------------------- /snippets/twig.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/twig.snippets -------------------------------------------------------------------------------- /snippets/typescript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/typescript.snippets -------------------------------------------------------------------------------- /snippets/typescriptreact.snippets: -------------------------------------------------------------------------------- 1 | extends typescript 2 | -------------------------------------------------------------------------------- /snippets/verilog.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/verilog.snippets -------------------------------------------------------------------------------- /snippets/vhdl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/vhdl.snippets -------------------------------------------------------------------------------- /snippets/vim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/vim.snippets -------------------------------------------------------------------------------- /snippets/vue.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/vue.snippets -------------------------------------------------------------------------------- /snippets/xml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/xml.snippets -------------------------------------------------------------------------------- /snippets/xslt.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/xslt.snippets -------------------------------------------------------------------------------- /snippets/yii-chtml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/yii-chtml.snippets -------------------------------------------------------------------------------- /snippets/yii.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/yii.snippets -------------------------------------------------------------------------------- /snippets/zsh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/snippets/zsh.snippets -------------------------------------------------------------------------------- /tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honza/vim-snippets/HEAD/tests.sh --------------------------------------------------------------------------------