Skip to content

Commit

Permalink
fix: scope char config validation
Browse files Browse the repository at this point in the history
fix #672
  • Loading branch information
lukas-reineke committed Oct 2, 2023
1 parent af58360 commit 2ca1f0e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lua/ibl/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ local validate_config = function(config)
if config.scope then
vim.validate {
enabled = { config.scope.enabled, "boolean", true },
char = { config.scope.char, { "string", "table" }, true },
show_start = { config.scope.show_start, "boolean", true },
show_end = { config.scope.show_end, "boolean", true },
injected_languages = { config.scope.injected_languages, "boolean", true },
Expand Down

0 comments on commit 2ca1f0e

Please sign in to comment.