fix: remove debug print statement

This commit is contained in:
Steven Arcangeli 2023-07-29 10:43:37 -07:00
parent 1f15722857
commit 9703f76f34

View file

@ -425,7 +425,6 @@ local function create_filetype_opt_getter(name, option, default)
if type(option) ~= "table" or vim.tbl_islist(option) then
return function(bufnr)
local has_buf_option, buf_option = pcall(vim.api.nvim_buf_get_var, bufnr, buffer_option_name)
print(buffer_option_name, has_buf_option, vim.inspect(buf_option))
if has_buf_option then
return buf_option
else