diff options
| author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-10-22 10:37:32 +0200 |
|---|---|---|
| committer | Thomas Vigouroux <tomvig38@gmail.com> | 2020-10-22 10:42:03 +0200 |
| commit | d42b9c38f805a1fe1eafb27f9826dfc687d9fbfb (patch) | |
| tree | 96a441f9888e26cca38489f9a29481c869466fe3 /lua | |
| parent | fix(markdown): disable highlighting (diff) | |
| download | nvim-treesitter-d42b9c38f805a1fe1eafb27f9826dfc687d9fbfb.tar nvim-treesitter-d42b9c38f805a1fe1eafb27f9826dfc687d9fbfb.tar.gz nvim-treesitter-d42b9c38f805a1fe1eafb27f9826dfc687d9fbfb.tar.bz2 nvim-treesitter-d42b9c38f805a1fe1eafb27f9826dfc687d9fbfb.tar.lz nvim-treesitter-d42b9c38f805a1fe1eafb27f9826dfc687d9fbfb.tar.xz nvim-treesitter-d42b9c38f805a1fe1eafb27f9826dfc687d9fbfb.tar.zst nvim-treesitter-d42b9c38f805a1fe1eafb27f9826dfc687d9fbfb.zip | |
fix(markdown): remove from parser list
Bye bye markdown
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 2b09fcf3e..864907d6b 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -202,12 +202,13 @@ list.haskell = { } } -list.markdown = { - install_info = { - url = "https://github.com/ikatyang/tree-sitter-markdown", - files = { "src/parser.c", "src/scanner.cc" }, - } -} +-- FIXME(vigoux): markdown is broken for now +-- list.markdown = { +-- install_info = { +-- url = "https://github.com/ikatyang/tree-sitter-markdown", +-- files = { "src/parser.c", "src/scanner.cc" }, +-- } +-- } list.toml = { install_info = { |
