From 1f7c38ae0511e787df6c1aa94cfbf1951a67d83d Mon Sep 17 00:00:00 2001 From: Lukas Reineke Date: Fri, 4 Oct 2024 15:04:33 +0900 Subject: [PATCH] feat: Support user defined scope languages Node types for languages defined in `:help ibl.config.scope.include.node_type` will work, even if the language does not have support out of the box. fix #926 --- README.md | 2 +- lua/ibl/hooks.lua | 2 +- lua/ibl/scope.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f306168..7488457 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This plugin requires the latest stable version of Neovim. ## Install -Use your favourite plugin manager to install. +Use your favorite plugin manager to install. For [lazy.nvim](https://github.com/folke/lazy.nvim): diff --git a/lua/ibl/hooks.lua b/lua/ibl/hooks.lua index c08b47f..e59d89c 100644 --- a/lua/ibl/hooks.lua +++ b/lua/ibl/hooks.lua @@ -48,7 +48,7 @@ local count = 0 --- Each hook type takes a callback a different function, and a configuration table ---@param type ibl.hooks.type ---@param cb function ----@param opts ibl.hooks.options +---@param opts ibl.hooks.options? ---@overload fun(type: 'ACTIVE', cb: ibl.hooks.cb.active, opts: ibl.hooks.options?): string ---@overload fun(type: 'SCOPE_ACTIVE', cb: ibl.hooks.cb.scope_active, opts: ibl.hooks.options?): string ---@overload fun(type: 'SKIP_LINE', cb: ibl.hooks.cb.skip_line, opts: ibl.hooks.options?): string diff --git a/lua/ibl/scope.lua b/lua/ibl/scope.lua index 379dcd5..12d7092 100644 --- a/lua/ibl/scope.lua +++ b/lua/ibl/scope.lua @@ -58,7 +58,7 @@ M.get = function(bufnr, config) end local lang = lang_tree:lang() - if not scope_lang[lang] then + if not scope_lang[lang] and not config.scope.include.node_type[lang] then return nil end