Merge pull request #269 from horriblename/fix-weird-luainline

fix treesitter.highlight.disable example
This commit is contained in:
NotAShelf 2024-04-28 12:56:18 +00:00 committed by GitHub
commit 56a8476bc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,6 @@
}: let }: let
inherit (lib.modules) mkIf mkMerge; inherit (lib.modules) mkIf mkMerge;
inherit (lib.lists) optional optionals; inherit (lib.lists) optional optionals;
inherit (lib.trivial) boolToString;
inherit (lib.nvim.binds) mkSetBinding addDescriptionsToMappings; inherit (lib.nvim.binds) mkSetBinding addDescriptionsToMappings;
inherit (lib.nvim.lua) toLuaObject; inherit (lib.nvim.lua) toLuaObject;
inherit (lib.nvim.dag) entryBefore entryAfter; inherit (lib.nvim.dag) entryBefore entryAfter;

View File

@ -97,7 +97,7 @@ in {
example = literalMD '' example = literalMD ''
```lua ```lua
-- Disable slow treesitter highlight for large files -- Disable slow treesitter highlight for large files
disable = function(lang, buf) function(lang, buf)
local max_filesize = 1000 * 1024 -- 1MB local max_filesize = 1000 * 1024 -- 1MB
local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf)) local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf))
if ok and stats and stats.size > max_filesize then if ok and stats and stats.size > max_filesize then