From dd4f5babadd45603f1b8506229717aa21e6bbebf Mon Sep 17 00:00:00 2001 From: Andrew Ferrier Date: Fri, 22 Nov 2024 10:23:38 +0000 Subject: [PATCH] docs: Correct showcase link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b14653c..53f0a93 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ they are used to convert sections to ROT-13, which most folks don't use. | ------------------- | ---------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `move_to_debugline` | `false` | When adding a debug line, moves the cursor to that line | | `display_location` | `true` | Include the filename and linenumber of the line being debugged in the debug message | -| `display_counter` | `true` | Include the increasing integer counter in the debug message. (Can also be set to a function to customize, see the [showcase]([SHOWCASE.md](https://github.com/andrewferrier/debugprint.nvim/blob/main/SHOWCASE.md#use-a-custom-display_counter-counter))) for an example | +| `display_counter` | `true` | Include the increasing integer counter in the debug message. (Can also be set to a function to customize, see the [showcase](SHOWCASE.md#use-a-custom-display_counter-counter)) for an example | | `display_snippet` | `true` | Include a snippet of the line above/below in the debug message (plain debug lines only) for context | | `filetypes` | See ([the code](lua/debugprint/filetypes.lua)) | Custom filetypes - see [showcase](SHOWCASE.md) | | `print_tag` | `DEBUGPRINT` | The string inserted into each print statement, which can be used to uniquely identify statements inserted by `debugprint`. If you set this to `''` (the empty string), no print tag will be included, but this will disable the ability to delete or comment print statements via `debugprint` |