diff options
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | doc/nvim-treesitter.txt | 3 |
2 files changed, 7 insertions, 2 deletions
@@ -299,14 +299,16 @@ EOF # Extra features -- Syntax based code folding +## Syntax based code folding ```vim set foldmethod=expr set foldexpr=nvim_treesitter#foldexpr() ``` -- Statusline indicator +This will respect your `foldnestmax` setting. + +## Statusline indicator ```vim echo nvim_treesitter#statusline(90) " 90 can be any length diff --git a/doc/nvim-treesitter.txt b/doc/nvim-treesitter.txt index 5afcd9069..e14a2ac15 100644 --- a/doc/nvim-treesitter.txt +++ b/doc/nvim-treesitter.txt @@ -551,6 +551,9 @@ To use it: > set foldmethod=expr set foldexpr=nvim_treesitter#foldexr() < + +This will respect your 'foldnestmax' setting. + Note: This is highly experimental, and folding can break on some types of edits. If you encounter such breakage, hiting `zx` should fix folding. In any case, feel free to open an issue with the reproducing steps. |
