Skip to content

Commit

Permalink
chore: auto-generate vimdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser authored and github-actions[bot] committed Dec 3, 2024
1 parent 5ef53fd commit d666dd1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions doc/nvim-various-textobjs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ own keymaps.
-- lazy.nvim
{
"chrisgrieser/nvim-various-textobjs",
lazy = true,
keys = {
-- ...
},
Expand All @@ -239,12 +238,14 @@ The `.setup()` call is optional if you are fine with the defaults below.
>lua
-- default config
require("various-textobjs").setup {
-- use suggested keymaps (see overview table in README)
-- See overview table in README for the defaults keymaps.
-- (Note that lazy-loading this plugin, the default keymaps cannot be set up.
-- if you set this to `true`, you thus need to add `event = "VeryLazy"` to your
-- lazy.nvim config.)
useDefaultKeymaps = false,

-- disable only some default keymaps, e.g. { "ai", "ii" }
---@type string[]
disabledKeymaps = {},
disabledKeymaps = {}, -- disable only some default keymaps, e.g. { "ai", "ii" }

-- Number of lines to seek forwards for a text object. See the overview table
-- in the README for which text object uses which value.
Expand Down

0 comments on commit d666dd1

Please sign in to comment.