Skip to content

Commit

Permalink
Auto generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Isrothy authored and github-actions[bot] committed Sep 1, 2024
1 parent 905c7d5 commit 55c26d9
Showing 1 changed file with 26 additions and 10 deletions.
36 changes: 26 additions & 10 deletions doc/neominimap.nvim.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*neominimap.nvim.txt* For NVIM v0.10.* Last change: 2024 August 29
*neominimap.nvim.txt* For NVIM v0.10.* Last change: 2024 September 01

==============================================================================
Table of Contents *neominimap.nvim-table-of-contents*
Expand Down Expand Up @@ -272,40 +272,52 @@ Click to expand ~
diagnostic = {
enabled = true, ---@type boolean
severity = vim.diagnostic.severity.WARN, ---@type vim.diagnostic.SeverityInt
mode = "line", ---@type Neominimap.Handler.MarkMode
mode = "line", ---@type Neominimap.Handler.Annotation.Mode
priority = {
ERROR = 100, ---@type integer
WARN = 90, ---@type integer
INFO = 80, ---@type integer
HINT = 70, ---@type integer
},
icon = {
ERROR = "󰅚 ", ---@type string
WARN = "󰀪 ", ---@type string
INFO = "󰌶 ", ---@type string
HINT = " ", ---@type string
},
},

git = {
enabled = true, ---@type boolean
mode = "sign", ---@type Neominimap.Handler.MarkMode
mode = "sign", ---@type Neominimap.Handler.Annotation.Mode
priority = 6, ---@type integer
icon = {
add = "+ ", ---@type string
change = "~ ", ---@type string
delete = "- ", ---@type string
},
},

search = {
enabled = false, ---@type boolean
mode = "line", ---@type Neominimap.Handler.MarkMode
mode = "line", ---@type Neominimap.Handler.Annotation.Mode
priority = 20, ---@type integer
icon = "󰱽 ", ---@type string
},

treesitter = {
enabled = true, ---@type boolean
priority = 200, ---@type integer
},

mark = {
enabled = false, ---@type boolean
mode = "icon", ---@type Neominimap.Handler.Annotation
mode = "icon", ---@type Neominimap.Handler.Annotation.Mode
priority = 10, ---@type integer
key = "m", ---@type string
show_builtins = false, ---@type boolean -- shows the builtin marks like [ ] < >
},
treesitter = {
enabled = true, ---@type boolean
priority = 200, ---@type integer
},
fold = {
-- Considering fold when rendering minimap
enabled = true, ---@type boolean
Expand All @@ -320,6 +332,10 @@ Click to expand ~
---@param opt vim.bo
---@param bufnr integer the buffer id of the source buffer, NOT minimap buffer
bufopt = function(opt, bufnr) end,
---@type Neominimap.Map.Handler[]
handlers = {},
}
}
<

Expand Down

0 comments on commit 55c26d9

Please sign in to comment.