Skip to content

Commit

Permalink
chore(build): auto-generate vimdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 29, 2024
1 parent 353c866 commit ff6f5be
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions doc/tiny-inline-diagnostic.nvim.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*tiny-inline-diagnostic.nvim.txt*For Neovim >= 0.10.0Last change: 2024 December 28
*tiny-inline-diagnostic.nvim.txt*For Neovim >= 0.10.0Last change: 2024 December 29

==============================================================================
Table of Contents *tiny-inline-diagnostic.nvim-table-of-contents*
Expand Down Expand Up @@ -78,8 +78,8 @@ OPTIONS *tiny-inline-diagnostic.nvim-tiny-inline-diagnostic.nvim-options*
-- Use your defined signs in the diagnostic config table.
use_icons_from_diagnostic = false,

-- Add messages to the diagnostic when multilines is enabled
add_messages = true,
-- Add messages to the diagnostic when multilines is enabled
add_messages = true,

-- Throttle the update of the diagnostic when moving cursor, in milliseconds.
-- You can increase it if you have performance issues.
Expand All @@ -93,7 +93,24 @@ OPTIONS *tiny-inline-diagnostic.nvim-tiny-inline-diagnostic.nvim-options*
multiple_diag_under_cursor = false,

-- Enable diagnostic message on all lines.
multilines = false,
-- Can either be a boolean or a table with the following options:
-- multilines = {
-- -- Enable the multilines feature
-- enable = false,
--
-- -- Always show diagnostic messages on all lines
-- always_show = false,
-- }
-- If it is a boolean set as true, it will enable the feature with the default options:
-- multilines = {
-- enable = true,
-- always_show = false,
-- }
}
multilines = {
enabled = false,
always_show = false,
},

-- Show all diagnostics on the cursor line.
show_all_diags_on_cursorline = false,
Expand Down

0 comments on commit ff6f5be

Please sign in to comment.