diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-07-16 17:17:42 +0200 |
---|---|---|
committer | Thomas Vigouroux <tomvig38@gmail.com> | 2020-08-13 20:30:15 +0200 |
commit | 18c0e775286aa6621d9190db8cf02e65a3f3d61f (patch) | |
tree | 8a53b4e0c7dc4bf78a310878a61bac00a4da08a1 /runtime/lua/vim/treesitter.lua | |
parent | 613068071e02ddf5958fa82974373c370112c5e6 (diff) | |
download | rneovim-18c0e775286aa6621d9190db8cf02e65a3f3d61f.tar.gz rneovim-18c0e775286aa6621d9190db8cf02e65a3f3d61f.tar.bz2 rneovim-18c0e775286aa6621d9190db8cf02e65a3f3d61f.zip |
treesitter(docs): update and refresh docs
Diffstat (limited to 'runtime/lua/vim/treesitter.lua')
-rw-r--r-- | runtime/lua/vim/treesitter.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/runtime/lua/vim/treesitter.lua b/runtime/lua/vim/treesitter.lua index f43c8a872d..550dee1e3f 100644 --- a/runtime/lua/vim/treesitter.lua +++ b/runtime/lua/vim/treesitter.lua @@ -10,6 +10,12 @@ local parsers = {} local Parser = {} Parser.__index = Parser +--- Parses the buffer if needed and returns a tree. +-- +-- Calling this will call the on_changedtree callbacks if the tree has changed. +-- +-- @returns An up to date tree +-- @returns If the tree changed with this call, the changed ranges function Parser:parse() if self.valid then return self.tree @@ -40,6 +46,9 @@ function Parser:_on_lines(bufnr, changed_tick, start_row, old_stop_row, stop_row end end +--- Sets the included ranges for the current parser +-- +-- @param ranges A table of nodes that will be used as the ranges the parser should include. function Parser:set_included_ranges(ranges) self._parser:set_included_ranges(ranges) -- The buffer will need to be parsed again later |