lukas-reineke / indent-blankline.nvim

Indent guides for Neovim
MIT License
4.16k stars 102 forks source link

refactor: implement own version of vim.tbl_* without validate #789

Closed lukas-reineke closed 10 months ago

lukas-reineke commented 10 months ago

Most of the vim.tbl_* functions internally validate the input. This can be very expensive for hot loops. This implements an internal version of those functions without validation.

fix #776