Skip to content

Commit

Permalink
fix: Make validation work
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewferrier committed Mar 26, 2024
1 parent 6a716f9 commit fdc30b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/debugprint/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ local validate_global_opts = function(o)
vim.validate({
create_keymaps = { o.create_keymaps, "boolean" },
create_commands = { o.create_commands, "boolean" },
display_counter = { o.move_to_debugline, "boolean" },
display_snippet = { o.move_to_debugline, "boolean" },
display_counter = { o.display_counter, "boolean" },
display_snippet = { o.display_snippet, "boolean" },
move_to_debugline = { o.move_to_debugline, "boolean" },
ignore_treesitter = { o.ignore_treesitter, "boolean" },
filetypes = { o.filetypes, "table" },
Expand Down

0 comments on commit fdc30b2

Please sign in to comment.