From d666dd1313ad7badf200c1be71da2ebeecb129bf Mon Sep 17 00:00:00 2001 From: chrisgrieser Date: Tue, 3 Dec 2024 22:38:50 +0000 Subject: [PATCH] chore: auto-generate vimdocs --- doc/nvim-various-textobjs.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/nvim-various-textobjs.txt b/doc/nvim-various-textobjs.txt index b7820a4..524f405 100644 --- a/doc/nvim-various-textobjs.txt +++ b/doc/nvim-various-textobjs.txt @@ -215,7 +215,6 @@ own keymaps. -- lazy.nvim { "chrisgrieser/nvim-various-textobjs", - lazy = true, keys = { -- ... }, @@ -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.