From c36f6738165fec1d8e239d5c8c628cc45c58bcb3 Mon Sep 17 00:00:00 2001 From: Meow Honk <21010072+catgoose@users.noreply.github.com> Date: Tue, 24 Dec 2024 18:14:29 -0600 Subject: [PATCH] fix: renames calls to config module (#117) --- lua/colorizer.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/colorizer.lua b/lua/colorizer.lua index 7071713..45deea8 100644 --- a/lua/colorizer.lua +++ b/lua/colorizer.lua @@ -269,7 +269,7 @@ function M.attach_to_buffer(bufnr, options, bo_type) -- cached buffer options or get_attached_buffer_options(bufnr) -- new buffer options - or config.new_options(bufnr, bo_type) + or config.new_bo_options(bufnr, bo_type) options = config.apply_alias_options(options) -- TODO: 2024-11-26 - This seems to be validated in config.validate_opts @@ -469,7 +469,7 @@ function M.setup(opts) return end -- get cached options - local options = config.get_options(bo_type, buftype, filetype) + local options = config.get_bo_options(bo_type, buftype, filetype) if not options and not s.all[bo_type] then return end