├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── lint.yml │ ├── neovim.yml │ └── vim.yml ├── .gitignore ├── .gitlab-ci.yml ├── .luacheckrc ├── .projections.json ├── .vintrc.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── after ├── ftplugin │ ├── c_matchup.vim │ ├── cpp_matchup.vim │ ├── fortran_matchup.vim │ ├── html_matchup.vim │ ├── htmlangular_matchup.vim │ ├── janet_matchup.vim │ ├── javascript_matchup.vim │ ├── javascriptreact_matchup.vim │ ├── lua_matchup.vim │ ├── ocaml_matchup.vim │ ├── ruby_matchup.vim │ ├── tex_matchup.vim │ ├── typescriptreact_matchup.vim │ ├── vim_matchup.vim │ ├── vue_matchup.vim │ └── xml_matchup.vim ├── plugin │ └── matchit.vim └── queries │ ├── astro │ └── matchup.scm │ ├── bash │ └── matchup.scm │ ├── c │ └── matchup.scm │ ├── cpp │ └── matchup.scm │ ├── dockerfile │ └── matchup.scm │ ├── ecma │ └── matchup.scm │ ├── elixir │ └── matchup.scm │ ├── elm │ └── matchup.scm │ ├── erlang │ └── matchup.scm │ ├── fish │ └── matchup.scm │ ├── glimmer │ └── matchup.scm │ ├── go │ └── matchup.scm │ ├── haskell │ └── matchup.scm │ ├── html │ └── matchup.scm │ ├── javascript │ └── matchup.scm │ ├── jsx │ └── matchup.scm │ ├── julia │ └── matchup.scm │ ├── lua │ └── matchup.scm │ ├── markdown │ └── matchup.scm │ ├── markdown_inline │ └── matchup.scm │ ├── nim │ └── matchup.scm │ ├── nix │ └── matchup.scm │ ├── ocaml │ └── matchup.scm │ ├── perl │ └── matchup.scm │ ├── powershell │ └── matchup.scm │ ├── python │ └── matchup.scm │ ├── quote │ └── matchup.scm │ ├── ruby │ └── matchup.scm │ ├── rust │ └── matchup.scm │ ├── smali │ └── matchup.scm │ ├── svelte │ └── matchup.scm │ ├── templ │ └── matchup.scm │ ├── tsx │ └── matchup.scm │ ├── typescript │ └── matchup.scm │ ├── vim │ └── matchup.scm │ ├── vue │ └── matchup.scm │ └── zig │ └── matchup.scm ├── autoload ├── matchup.vim └── matchup │ ├── custom.vim │ ├── delim.vim │ ├── loader.vim │ ├── matchparen.vim │ ├── misc.vim │ ├── motion.vim │ ├── perf.vim │ ├── pos.vim │ ├── quirks.vim │ ├── re.vim │ ├── surround.vim │ ├── test.vim │ ├── text_obj.vim │ ├── transmute.vim │ ├── ts_engine.vim │ ├── ts_syntax.vim │ ├── unmatchit.vim │ ├── util.vim │ └── where.vim ├── doc └── matchup.txt ├── lua ├── match-up.lua └── treesitter-matchup │ ├── compat.lua │ ├── internal.lua │ ├── syntax.lua │ ├── third-party │ ├── hl-info.lua │ ├── lru.LICENSE-MIT │ ├── lru.lua │ ├── nvim-treesitter.LICENSE-APACHE-2.0 │ ├── plenary.LICENSE-MIT │ ├── reload.lua │ ├── ts-utils.lua │ └── utils.lua │ └── util.lua ├── plugin └── matchup.vim ├── test ├── issues │ ├── 3 │ │ ├── hotfix.vim │ │ └── test.sql │ ├── 7 │ │ ├── augroup.vim │ │ ├── hotfix.vim │ │ └── hotfix2.vim │ ├── 8 │ │ ├── flex.html │ │ ├── flex2.html │ │ ├── hotfix.vim │ │ └── slash.html │ ├── 10 │ │ ├── legacy.vim │ │ └── string.vim │ ├── 14 │ │ └── example.tex │ ├── 15 │ │ ├── enhance-vimrc │ │ ├── gc.vim │ │ └── issue-vimrc │ ├── 16 │ │ ├── any.vim │ │ └── blocks.vim │ ├── 19 │ │ ├── hotfix.vim │ │ ├── option.vim │ │ └── test.html │ ├── 21 │ │ └── Matchup_Problem_File.txt │ ├── 26 │ │ └── example.rb │ ├── 30 │ │ ├── complex-hl.html │ │ ├── example.html │ │ ├── example.vue │ │ └── minvimrc │ ├── 33 │ │ ├── minvimrc │ │ └── test.rb │ ├── 34 │ │ └── endvar.vim │ ├── 36 │ │ └── image_uploader.rb │ ├── 46 │ │ ├── Sample.jsx │ │ ├── minvimrc1 │ │ └── minvimrc2 │ ├── 48 │ │ ├── minvimrc │ │ ├── new.xml │ │ ├── simple.xml │ │ └── vim-matchup-20181230.xml │ ├── 49 │ │ ├── example.vim │ │ └── test.sh │ ├── 51 │ │ └── test.f90 │ ├── 54 │ │ └── foo.vim │ ├── 59 │ │ └── rebind.vim │ ├── 63 │ │ └── test.f90 │ ├── 64 │ │ └── ast.cc │ ├── 69 │ │ ├── cpptemplate.vim │ │ └── template.cpp │ ├── 84 │ │ └── ex.tex │ ├── 88 │ │ └── ex.cs │ ├── 98 │ │ └── test.html │ └── 107 │ │ └── bug.sv ├── lang │ ├── lua │ │ └── tohtml.lua │ └── ruby │ │ └── next.rb ├── legacy │ ├── addrtp.vim │ ├── augment.matchuptest │ ├── bootstrap.vim │ ├── forwhile.vim │ ├── hlend.matchuptest │ ├── mwe.vim │ ├── parens.txt │ ├── parts.vim │ ├── rtp │ │ ├── ftdetect │ │ │ └── matchuptest.vim │ │ └── ftplugin │ │ │ └── matchuptest.vim │ ├── startup.sh │ ├── tabs.vim │ ├── test.html │ ├── textobjV.vim │ ├── transmute.html │ ├── transmute2.html │ ├── unicode.matchuptest │ ├── vimrc-startup │ └── zsze.matchuptest ├── minvimrc ├── new │ ├── .coveragerc │ ├── .gitignore │ ├── Makefile │ ├── common │ │ └── bootstrap.vim │ ├── requirements.txt │ ├── test-core │ │ ├── Makefile │ │ ├── test.txt │ │ ├── test_perf.vim │ │ └── test_pos.vim │ ├── test-delim │ │ ├── Makefile │ │ ├── test.tex │ │ └── test.vim │ ├── test-loader │ │ ├── Makefile │ │ ├── example.ext │ │ └── test.vim │ ├── test-syn │ │ ├── Makefile │ │ ├── example.rb │ │ └── test.vim │ ├── test-treesitter │ │ ├── Makefile │ │ ├── example.py │ │ ├── example.rb │ │ └── test.vim │ ├── test-vader │ │ └── Makefile │ └── test-where │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── normal.c │ │ ├── test.vim │ │ ├── test1.good │ │ ├── test2.good │ │ └── test3.good ├── scripts │ └── style-check.sh └── vader │ ├── issue-66.vader │ ├── minvimrc │ ├── motion.vader │ ├── motion_force.vader │ ├── ruby.vader │ ├── run │ ├── syn.vader │ ├── text_obj.vader │ └── ts_py_motion.vader └── vim.Dockerfile /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/neovim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/.github/workflows/neovim.yml -------------------------------------------------------------------------------- /.github/workflows/vim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/.github/workflows/vim.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | .nvim.lua 3 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.projections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/.projections.json -------------------------------------------------------------------------------- /.vintrc.yml: -------------------------------------------------------------------------------- 1 | policies: 2 | ProhibitNoAbortFunction: 3 | enabled: false 4 | 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/README.md -------------------------------------------------------------------------------- /after/ftplugin/c_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/c_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/cpp_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/cpp_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/fortran_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/fortran_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/html_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/html_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/htmlangular_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/htmlangular_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/janet_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/janet_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/javascript_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/javascript_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/javascriptreact_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/javascriptreact_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/lua_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/lua_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/ocaml_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/ocaml_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/ruby_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/ruby_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/tex_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/tex_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/typescriptreact_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/typescriptreact_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/vim_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/vim_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/vue_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/vue_matchup.vim -------------------------------------------------------------------------------- /after/ftplugin/xml_matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/ftplugin/xml_matchup.vim -------------------------------------------------------------------------------- /after/plugin/matchit.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /after/queries/astro/matchup.scm: -------------------------------------------------------------------------------- 1 | ; inherits: html 2 | -------------------------------------------------------------------------------- /after/queries/bash/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/bash/matchup.scm -------------------------------------------------------------------------------- /after/queries/c/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/c/matchup.scm -------------------------------------------------------------------------------- /after/queries/cpp/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/cpp/matchup.scm -------------------------------------------------------------------------------- /after/queries/dockerfile/matchup.scm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /after/queries/ecma/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/ecma/matchup.scm -------------------------------------------------------------------------------- /after/queries/elixir/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/elixir/matchup.scm -------------------------------------------------------------------------------- /after/queries/elm/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/elm/matchup.scm -------------------------------------------------------------------------------- /after/queries/erlang/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/erlang/matchup.scm -------------------------------------------------------------------------------- /after/queries/fish/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/fish/matchup.scm -------------------------------------------------------------------------------- /after/queries/glimmer/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/glimmer/matchup.scm -------------------------------------------------------------------------------- /after/queries/go/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/go/matchup.scm -------------------------------------------------------------------------------- /after/queries/haskell/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/haskell/matchup.scm -------------------------------------------------------------------------------- /after/queries/html/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/html/matchup.scm -------------------------------------------------------------------------------- /after/queries/javascript/matchup.scm: -------------------------------------------------------------------------------- 1 | ; inherits: ecma,jsx 2 | -------------------------------------------------------------------------------- /after/queries/jsx/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/jsx/matchup.scm -------------------------------------------------------------------------------- /after/queries/julia/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/julia/matchup.scm -------------------------------------------------------------------------------- /after/queries/lua/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/lua/matchup.scm -------------------------------------------------------------------------------- /after/queries/markdown/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/markdown/matchup.scm -------------------------------------------------------------------------------- /after/queries/markdown_inline/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/markdown_inline/matchup.scm -------------------------------------------------------------------------------- /after/queries/nim/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/nim/matchup.scm -------------------------------------------------------------------------------- /after/queries/nix/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/nix/matchup.scm -------------------------------------------------------------------------------- /after/queries/ocaml/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/ocaml/matchup.scm -------------------------------------------------------------------------------- /after/queries/perl/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/perl/matchup.scm -------------------------------------------------------------------------------- /after/queries/powershell/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/powershell/matchup.scm -------------------------------------------------------------------------------- /after/queries/python/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/python/matchup.scm -------------------------------------------------------------------------------- /after/queries/quote/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/quote/matchup.scm -------------------------------------------------------------------------------- /after/queries/ruby/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/ruby/matchup.scm -------------------------------------------------------------------------------- /after/queries/rust/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/rust/matchup.scm -------------------------------------------------------------------------------- /after/queries/smali/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/smali/matchup.scm -------------------------------------------------------------------------------- /after/queries/svelte/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/svelte/matchup.scm -------------------------------------------------------------------------------- /after/queries/templ/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/templ/matchup.scm -------------------------------------------------------------------------------- /after/queries/tsx/matchup.scm: -------------------------------------------------------------------------------- 1 | ; inherits: typescript,jsx 2 | -------------------------------------------------------------------------------- /after/queries/typescript/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/typescript/matchup.scm -------------------------------------------------------------------------------- /after/queries/vim/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/vim/matchup.scm -------------------------------------------------------------------------------- /after/queries/vue/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/vue/matchup.scm -------------------------------------------------------------------------------- /after/queries/zig/matchup.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/after/queries/zig/matchup.scm -------------------------------------------------------------------------------- /autoload/matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup.vim -------------------------------------------------------------------------------- /autoload/matchup/custom.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/custom.vim -------------------------------------------------------------------------------- /autoload/matchup/delim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/delim.vim -------------------------------------------------------------------------------- /autoload/matchup/loader.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/loader.vim -------------------------------------------------------------------------------- /autoload/matchup/matchparen.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/matchparen.vim -------------------------------------------------------------------------------- /autoload/matchup/misc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/misc.vim -------------------------------------------------------------------------------- /autoload/matchup/motion.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/motion.vim -------------------------------------------------------------------------------- /autoload/matchup/perf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/perf.vim -------------------------------------------------------------------------------- /autoload/matchup/pos.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/pos.vim -------------------------------------------------------------------------------- /autoload/matchup/quirks.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/quirks.vim -------------------------------------------------------------------------------- /autoload/matchup/re.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/re.vim -------------------------------------------------------------------------------- /autoload/matchup/surround.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/surround.vim -------------------------------------------------------------------------------- /autoload/matchup/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/test.vim -------------------------------------------------------------------------------- /autoload/matchup/text_obj.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/text_obj.vim -------------------------------------------------------------------------------- /autoload/matchup/transmute.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/transmute.vim -------------------------------------------------------------------------------- /autoload/matchup/ts_engine.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/ts_engine.vim -------------------------------------------------------------------------------- /autoload/matchup/ts_syntax.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/ts_syntax.vim -------------------------------------------------------------------------------- /autoload/matchup/unmatchit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/unmatchit.vim -------------------------------------------------------------------------------- /autoload/matchup/util.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/util.vim -------------------------------------------------------------------------------- /autoload/matchup/where.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/autoload/matchup/where.vim -------------------------------------------------------------------------------- /doc/matchup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/doc/matchup.txt -------------------------------------------------------------------------------- /lua/match-up.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/match-up.lua -------------------------------------------------------------------------------- /lua/treesitter-matchup/compat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/compat.lua -------------------------------------------------------------------------------- /lua/treesitter-matchup/internal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/internal.lua -------------------------------------------------------------------------------- /lua/treesitter-matchup/syntax.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/syntax.lua -------------------------------------------------------------------------------- /lua/treesitter-matchup/third-party/hl-info.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/third-party/hl-info.lua -------------------------------------------------------------------------------- /lua/treesitter-matchup/third-party/lru.LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/third-party/lru.LICENSE-MIT -------------------------------------------------------------------------------- /lua/treesitter-matchup/third-party/lru.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/third-party/lru.lua -------------------------------------------------------------------------------- /lua/treesitter-matchup/third-party/nvim-treesitter.LICENSE-APACHE-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/third-party/nvim-treesitter.LICENSE-APACHE-2.0 -------------------------------------------------------------------------------- /lua/treesitter-matchup/third-party/plenary.LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/third-party/plenary.LICENSE-MIT -------------------------------------------------------------------------------- /lua/treesitter-matchup/third-party/reload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/third-party/reload.lua -------------------------------------------------------------------------------- /lua/treesitter-matchup/third-party/ts-utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/third-party/ts-utils.lua -------------------------------------------------------------------------------- /lua/treesitter-matchup/third-party/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/third-party/utils.lua -------------------------------------------------------------------------------- /lua/treesitter-matchup/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/lua/treesitter-matchup/util.lua -------------------------------------------------------------------------------- /plugin/matchup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/plugin/matchup.vim -------------------------------------------------------------------------------- /test/issues/10/legacy.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/10/legacy.vim -------------------------------------------------------------------------------- /test/issues/10/string.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/10/string.vim -------------------------------------------------------------------------------- /test/issues/107/bug.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/107/bug.sv -------------------------------------------------------------------------------- /test/issues/14/example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/14/example.tex -------------------------------------------------------------------------------- /test/issues/15/enhance-vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/15/enhance-vimrc -------------------------------------------------------------------------------- /test/issues/15/gc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/15/gc.vim -------------------------------------------------------------------------------- /test/issues/15/issue-vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/15/issue-vimrc -------------------------------------------------------------------------------- /test/issues/16/any.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/16/any.vim -------------------------------------------------------------------------------- /test/issues/16/blocks.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/16/blocks.vim -------------------------------------------------------------------------------- /test/issues/19/hotfix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/19/hotfix.vim -------------------------------------------------------------------------------- /test/issues/19/option.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/19/option.vim -------------------------------------------------------------------------------- /test/issues/19/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/19/test.html -------------------------------------------------------------------------------- /test/issues/21/Matchup_Problem_File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/21/Matchup_Problem_File.txt -------------------------------------------------------------------------------- /test/issues/26/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/26/example.rb -------------------------------------------------------------------------------- /test/issues/3/hotfix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/3/hotfix.vim -------------------------------------------------------------------------------- /test/issues/3/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/3/test.sql -------------------------------------------------------------------------------- /test/issues/30/complex-hl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/30/complex-hl.html -------------------------------------------------------------------------------- /test/issues/30/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/30/example.html -------------------------------------------------------------------------------- /test/issues/30/example.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/30/example.vue -------------------------------------------------------------------------------- /test/issues/30/minvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/30/minvimrc -------------------------------------------------------------------------------- /test/issues/33/minvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/33/minvimrc -------------------------------------------------------------------------------- /test/issues/33/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/33/test.rb -------------------------------------------------------------------------------- /test/issues/34/endvar.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/34/endvar.vim -------------------------------------------------------------------------------- /test/issues/36/image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/36/image_uploader.rb -------------------------------------------------------------------------------- /test/issues/46/Sample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/46/Sample.jsx -------------------------------------------------------------------------------- /test/issues/46/minvimrc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/46/minvimrc1 -------------------------------------------------------------------------------- /test/issues/46/minvimrc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/46/minvimrc2 -------------------------------------------------------------------------------- /test/issues/48/minvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/48/minvimrc -------------------------------------------------------------------------------- /test/issues/48/new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/48/new.xml -------------------------------------------------------------------------------- /test/issues/48/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/48/simple.xml -------------------------------------------------------------------------------- /test/issues/48/vim-matchup-20181230.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/48/vim-matchup-20181230.xml -------------------------------------------------------------------------------- /test/issues/49/example.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/49/example.vim -------------------------------------------------------------------------------- /test/issues/49/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/49/test.sh -------------------------------------------------------------------------------- /test/issues/51/test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/51/test.f90 -------------------------------------------------------------------------------- /test/issues/54/foo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/54/foo.vim -------------------------------------------------------------------------------- /test/issues/59/rebind.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/59/rebind.vim -------------------------------------------------------------------------------- /test/issues/63/test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/63/test.f90 -------------------------------------------------------------------------------- /test/issues/64/ast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/64/ast.cc -------------------------------------------------------------------------------- /test/issues/69/cpptemplate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/69/cpptemplate.vim -------------------------------------------------------------------------------- /test/issues/69/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/69/template.cpp -------------------------------------------------------------------------------- /test/issues/7/augroup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/7/augroup.vim -------------------------------------------------------------------------------- /test/issues/7/hotfix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/7/hotfix.vim -------------------------------------------------------------------------------- /test/issues/7/hotfix2.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/7/hotfix2.vim -------------------------------------------------------------------------------- /test/issues/8/flex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/8/flex.html -------------------------------------------------------------------------------- /test/issues/8/flex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/8/flex2.html -------------------------------------------------------------------------------- /test/issues/8/hotfix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/8/hotfix.vim -------------------------------------------------------------------------------- /test/issues/8/slash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/8/slash.html -------------------------------------------------------------------------------- /test/issues/84/ex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/84/ex.tex -------------------------------------------------------------------------------- /test/issues/88/ex.cs: -------------------------------------------------------------------------------- 1 | this is some longer text 2 | short {0} 3 | -------------------------------------------------------------------------------- /test/issues/98/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/issues/98/test.html -------------------------------------------------------------------------------- /test/lang/lua/tohtml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/lang/lua/tohtml.lua -------------------------------------------------------------------------------- /test/lang/ruby/next.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/lang/ruby/next.rb -------------------------------------------------------------------------------- /test/legacy/addrtp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/addrtp.vim -------------------------------------------------------------------------------- /test/legacy/augment.matchuptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/augment.matchuptest -------------------------------------------------------------------------------- /test/legacy/bootstrap.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/bootstrap.vim -------------------------------------------------------------------------------- /test/legacy/forwhile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/forwhile.vim -------------------------------------------------------------------------------- /test/legacy/hlend.matchuptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/hlend.matchuptest -------------------------------------------------------------------------------- /test/legacy/mwe.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/mwe.vim -------------------------------------------------------------------------------- /test/legacy/parens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/parens.txt -------------------------------------------------------------------------------- /test/legacy/parts.vim: -------------------------------------------------------------------------------- 1 | 2 | 3 | function 4 | return 5 | 6 | break 7 | endwhile 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/legacy/rtp/ftdetect/matchuptest.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/rtp/ftdetect/matchuptest.vim -------------------------------------------------------------------------------- /test/legacy/rtp/ftplugin/matchuptest.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/rtp/ftplugin/matchuptest.vim -------------------------------------------------------------------------------- /test/legacy/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/startup.sh -------------------------------------------------------------------------------- /test/legacy/tabs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/tabs.vim -------------------------------------------------------------------------------- /test/legacy/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/test.html -------------------------------------------------------------------------------- /test/legacy/textobjV.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/textobjV.vim -------------------------------------------------------------------------------- /test/legacy/transmute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/transmute.html -------------------------------------------------------------------------------- /test/legacy/transmute2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/transmute2.html -------------------------------------------------------------------------------- /test/legacy/unicode.matchuptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/unicode.matchuptest -------------------------------------------------------------------------------- /test/legacy/vimrc-startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/vimrc-startup -------------------------------------------------------------------------------- /test/legacy/zsze.matchuptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/legacy/zsze.matchuptest -------------------------------------------------------------------------------- /test/minvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/minvimrc -------------------------------------------------------------------------------- /test/new/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/.coveragerc -------------------------------------------------------------------------------- /test/new/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/.gitignore -------------------------------------------------------------------------------- /test/new/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/Makefile -------------------------------------------------------------------------------- /test/new/common/bootstrap.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/common/bootstrap.vim -------------------------------------------------------------------------------- /test/new/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/requirements.txt -------------------------------------------------------------------------------- /test/new/test-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-core/Makefile -------------------------------------------------------------------------------- /test/new/test-core/test.txt: -------------------------------------------------------------------------------- 1 | example 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/new/test-core/test_perf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-core/test_perf.vim -------------------------------------------------------------------------------- /test/new/test-core/test_pos.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-core/test_pos.vim -------------------------------------------------------------------------------- /test/new/test-delim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-delim/Makefile -------------------------------------------------------------------------------- /test/new/test-delim/test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-delim/test.tex -------------------------------------------------------------------------------- /test/new/test-delim/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-delim/test.vim -------------------------------------------------------------------------------- /test/new/test-loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-loader/Makefile -------------------------------------------------------------------------------- /test/new/test-loader/example.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-loader/example.ext -------------------------------------------------------------------------------- /test/new/test-loader/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-loader/test.vim -------------------------------------------------------------------------------- /test/new/test-syn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-syn/Makefile -------------------------------------------------------------------------------- /test/new/test-syn/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-syn/example.rb -------------------------------------------------------------------------------- /test/new/test-syn/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-syn/test.vim -------------------------------------------------------------------------------- /test/new/test-treesitter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-treesitter/Makefile -------------------------------------------------------------------------------- /test/new/test-treesitter/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-treesitter/example.py -------------------------------------------------------------------------------- /test/new/test-treesitter/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-treesitter/example.rb -------------------------------------------------------------------------------- /test/new/test-treesitter/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-treesitter/test.vim -------------------------------------------------------------------------------- /test/new/test-vader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-vader/Makefile -------------------------------------------------------------------------------- /test/new/test-where/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-where/LICENSE -------------------------------------------------------------------------------- /test/new/test-where/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-where/Makefile -------------------------------------------------------------------------------- /test/new/test-where/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-where/normal.c -------------------------------------------------------------------------------- /test/new/test-where/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-where/test.vim -------------------------------------------------------------------------------- /test/new/test-where/test1.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-where/test1.good -------------------------------------------------------------------------------- /test/new/test-where/test2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-where/test2.good -------------------------------------------------------------------------------- /test/new/test-where/test3.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/new/test-where/test3.good -------------------------------------------------------------------------------- /test/scripts/style-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/scripts/style-check.sh -------------------------------------------------------------------------------- /test/vader/issue-66.vader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/vader/issue-66.vader -------------------------------------------------------------------------------- /test/vader/minvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/vader/minvimrc -------------------------------------------------------------------------------- /test/vader/motion.vader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/vader/motion.vader -------------------------------------------------------------------------------- /test/vader/motion_force.vader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/vader/motion_force.vader -------------------------------------------------------------------------------- /test/vader/ruby.vader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/vader/ruby.vader -------------------------------------------------------------------------------- /test/vader/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/vader/run -------------------------------------------------------------------------------- /test/vader/syn.vader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/vader/syn.vader -------------------------------------------------------------------------------- /test/vader/text_obj.vader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/vader/text_obj.vader -------------------------------------------------------------------------------- /test/vader/ts_py_motion.vader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/test/vader/ts_py_motion.vader -------------------------------------------------------------------------------- /vim.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andymass/vim-matchup/HEAD/vim.Dockerfile --------------------------------------------------------------------------------