Skip to content

Commit

Permalink
fix: remove debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed Jul 29, 2023
1 parent 1f15722 commit 9703f76
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lua/aerial/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9703f76

Please sign in to comment.