plugins/debugprint: remove deprecated ignore_treesitter option

This commit is contained in:
Gaetan Lepage 2024-05-30 09:55:35 +02:00 committed by Gaétan Lepage
parent 2031a09b36
commit 5c8f85dd27
2 changed files with 0 additions and 7 deletions

View file

@ -160,11 +160,6 @@ helpers.neovim-plugin.mkNeovimPlugin config {
``` ```
''; '';
ignore_treesitter = helpers.defaultNullOpts.mkBool false ''
Never use treesitter to find a variable under the cursor, always prompt for it - overrides
the same setting on `debugprint()` if set to true.
'';
print_tag = helpers.defaultNullOpts.mkStr "DEBUGPRINT" '' print_tag = helpers.defaultNullOpts.mkStr "DEBUGPRINT" ''
The string inserted into each print statement, which can be used to uniquely identify The string inserted into each print statement, which can be used to uniquely identify
statements inserted by `debugprint`. statements inserted by `debugprint`.
@ -199,7 +194,6 @@ helpers.neovim-plugin.mkNeovimPlugin config {
right_var = "}')"; right_var = "}')";
}; };
}; };
ignore_treesitter = false;
print_tag = "DEBUGPRINT"; print_tag = "DEBUGPRINT";
}; };
} }

View file

@ -41,7 +41,6 @@
right_var = "}')"; right_var = "}')";
}; };
}; };
ignore_treesitter = false;
print_tag = "DEBUGPRINT"; print_tag = "DEBUGPRINT";
}; };
}; };