mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
fix(indent-blankline): temp fix for tbl_flatten
on 0.9.x
This commit is contained in:
parent
08925421e8
commit
3a193d3aa8
1 changed files with 7 additions and 0 deletions
|
@ -237,6 +237,13 @@ return {
|
|||
},
|
||||
},
|
||||
main = "ibl",
|
||||
config = function(_, opts)
|
||||
if vim.fn.has("nvim-0.10.0") == 0 then
|
||||
local utils = require("ibl.utils")
|
||||
utils.tbl_join = vim.tbl_flatten
|
||||
end
|
||||
require("ibl").setup(opts)
|
||||
end,
|
||||
},
|
||||
|
||||
-- Displays a popup with possible key bindings of the command you started typing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue