You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`move_to_debugline`|`false`| When adding a debug line, moves the cursor to that line |
195
-
|`display_location`|`true`| Include the filename and linenumber of the line being debugged in the debug message |
196
-
|`display_counter`|`true`| Include the increasing integer counter in the debug message. (If you want to customize this counter, or make it non-persistent, see instructions in the [showcase](SHOWCASE.md#restoring-non-persistent-display_counter-counter) for an example). |
197
-
|`display_snippet`|`true`| Include a snippet of the line above/below in the debug message (plain debug lines only) for context |
198
-
|`filetypes`| See ([the code](lua/debugprint/filetypes.lua)) | Custom filetypes - see [showcase](SHOWCASE.md)|
199
-
|`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`|
|`move_to_debugline`|`false`| When adding a debug line, moves the cursor to that line |
195
+
|`display_location`|`true`| Include the filename and linenumber of the line being debugged in the debug message |
196
+
|`display_counter`|`true`| Include the increasing integer counter in the debug message. (If you want to customize this counter, or make it non-persistent, see instructions in the [showcase](SHOWCASE.md#restoring-non-persistent-display_counter-counter) for an example). |
197
+
|`display_snippet`|`true`| Include a snippet of the line above/below in the debug message (plain debug lines only) for context |
198
+
|`notify_for_registers`|`true`| If set to false, disables the notifications that occur when debugprint lines are inserted or appended to registers |
199
+
|`filetypes`| See ([the code](lua/debugprint/filetypes.lua)) | Custom filetypes - see [showcase](SHOWCASE.md)|
200
+
|`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`|
The notifications that happen when you add content to a register can be disabled with the global [`notify_for_registers` option](README.md#other-options), should you wish.
0 commit comments