aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/nvim-treesitter.txt3
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/nvim-treesitter.txt b/doc/nvim-treesitter.txt
index d0f204146..323b8ab25 100644
--- a/doc/nvim-treesitter.txt
+++ b/doc/nvim-treesitter.txt
@@ -84,9 +84,6 @@ if you want to disable the module for some languages you can pass a list to the
highlight = {
enable = true,
disable = { "cpp", "lua" },
- condition = function(lang, bufnr) -- Disable in large C++ buffers
- return not (lang == "cpp" and api.nvim_buf_line_count(bufnr) > 50000)
- end,
},
}
EOF