diff options
| author | Thomas Vigouroux <39092278+vigoux@users.noreply.github.com> | 2020-04-19 20:38:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-19 20:38:51 +0200 |
| commit | 05be31024adc868af782c51dd63c6ccdfbfeb2a9 (patch) | |
| tree | 45970745e65c16d52bcb93db4a4a466c6f9f105c /lua/nvim-treesitter.lua | |
| parent | Merge pull request #2 from kyazdani42/install-parser (diff) | |
| parent | perf: don't compute locals on buffer updates (diff) | |
| download | nvim-treesitter-05be31024adc868af782c51dd63c6ccdfbfeb2a9.tar nvim-treesitter-05be31024adc868af782c51dd63c6ccdfbfeb2a9.tar.gz nvim-treesitter-05be31024adc868af782c51dd63c6ccdfbfeb2a9.tar.bz2 nvim-treesitter-05be31024adc868af782c51dd63c6ccdfbfeb2a9.tar.lz nvim-treesitter-05be31024adc868af782c51dd63c6ccdfbfeb2a9.tar.xz nvim-treesitter-05be31024adc868af782c51dd63c6ccdfbfeb2a9.tar.zst nvim-treesitter-05be31024adc868af782c51dd63c6ccdfbfeb2a9.zip | |
Merge pull request #3 from vigoux/feature/locals
Add locals handling
Diffstat (limited to 'lua/nvim-treesitter.lua')
| -rw-r--r-- | lua/nvim-treesitter.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/nvim-treesitter.lua b/lua/nvim-treesitter.lua index abb3b6d91..8dae7c33b 100644 --- a/lua/nvim-treesitter.lua +++ b/lua/nvim-treesitter.lua @@ -1,6 +1,7 @@ local api = vim.api local parsers = require'nvim-treesitter.parsers' local install = require'nvim-treesitter.install' +local locals = require'nvim-treesitter.locals' local M = {} |
