diff options
| author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-11-23 19:46:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-23 12:46:27 -0600 |
| commit | 808765a6c8cde93621f656fa61b0c6223928f51e (patch) | |
| tree | cbbe64a1649317e870297f86d89f222238a51c0a /lua/nvim-treesitter.lua | |
| parent | javascript: : in pairs as punctuation.delimiter (#684) (diff) | |
| download | nvim-treesitter-808765a6c8cde93621f656fa61b0c6223928f51e.tar nvim-treesitter-808765a6c8cde93621f656fa61b0c6223928f51e.tar.gz nvim-treesitter-808765a6c8cde93621f656fa61b0c6223928f51e.tar.bz2 nvim-treesitter-808765a6c8cde93621f656fa61b0c6223928f51e.tar.lz nvim-treesitter-808765a6c8cde93621f656fa61b0c6223928f51e.tar.xz nvim-treesitter-808765a6c8cde93621f656fa61b0c6223928f51e.tar.zst nvim-treesitter-808765a6c8cde93621f656fa61b0c6223928f51e.zip | |
fix: update interface following languagetree merge (#687)
Diffstat (limited to 'lua/nvim-treesitter.lua')
| -rw-r--r-- | lua/nvim-treesitter.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/nvim-treesitter.lua b/lua/nvim-treesitter.lua index cd1b68509..aeee269d2 100644 --- a/lua/nvim-treesitter.lua +++ b/lua/nvim-treesitter.lua @@ -1,5 +1,6 @@ --TODO(theHamsta): remove once stabilized! -if not pcall(require,"vim.treesitter.query") then +if not pcall(require,"vim.treesitter.languagetree") + and vim.fn.getenv('CI') == 0 then -- TODO(vigoux): remove once new nightlies are built error("nvim-treesitter requires a more recent Neovim nightly version!") end |
