diff options
author | Stephan Seitz <stephan.seitz@fau.de> | 2023-04-29 18:22:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 18:22:26 +0200 |
commit | c194acbfc479d8e5839fa629363f93f6550d035c (patch) | |
tree | 134a12e3a5b6ee970081bcfc83c3494201dfa00f /runtime/lua/vim/treesitter/playground.lua | |
parent | 933fdff4660a17b1df7809105c57825e0ece1fc6 (diff) | |
download | rneovim-c194acbfc479d8e5839fa629363f93f6550d035c.tar.gz rneovim-c194acbfc479d8e5839fa629363f93f6550d035c.tar.bz2 rneovim-c194acbfc479d8e5839fa629363f93f6550d035c.zip |
feat(treesitter): add query_linter from nvim-treesitter/playground (#22784)
Co-authored-by: clason <clason@users.noreply.github.com>
Co-authored-by: lewis6991 <lewis6991@users.noreply.github.com>
Diffstat (limited to 'runtime/lua/vim/treesitter/playground.lua')
-rw-r--r-- | runtime/lua/vim/treesitter/playground.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/treesitter/playground.lua b/runtime/lua/vim/treesitter/playground.lua index c512710810..8293c1bd0a 100644 --- a/runtime/lua/vim/treesitter/playground.lua +++ b/runtime/lua/vim/treesitter/playground.lua @@ -269,6 +269,7 @@ function M.inspect_tree(opts) vim.bo[b].buflisted = false vim.bo[b].buftype = 'nofile' vim.bo[b].bufhidden = 'wipe' + vim.b[b].disable_query_linter = true vim.bo[b].filetype = 'query' local title --- @type string? |