Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: generated vimdoc #449

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions doc/legendary.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*legendary.txt* Last change: 2024 February 02
*legendary.txt* Last change: 2024 April 12

==============================================================================
Table of Contents *legendary-table-of-contents*
Expand Down Expand Up @@ -112,7 +112,7 @@ With `lazy.nvim`:
-- to use a version
{
'mrjones2014/legendary.nvim',
version = 'v2.1.0',
version = 'v2.13.9',
-- since legendary.nvim handles all your keymaps/commands,
-- its recommended to load legendary.nvim before other plugins
priority = 10000,
Expand Down Expand Up @@ -179,7 +179,7 @@ automatically detects them. For example:

-- where you set up legendary.nvim
-- now the keymaps from the `flash.nvim` plugin spec will be automatically loaded
require('legendary').setup({ lazy_nvim = { auto_register = true } })
require('legendary').setup({ extensions = { lazy_nvim = true } })
<
Otherwise, register keymaps, commands, autocmds, and functions through setup,
including opting into _extensions_ which can automatically load keymaps and
Expand Down Expand Up @@ -271,6 +271,8 @@ commands from other plugins:
},
-- load extensions
extensions = {
-- automatically load keymaps from lazy.nvim's `keys` option
lazy_nvim = true,
-- load keymaps and commands from nvim-tree.lua
nvim_tree = true,
-- load commands from smart-splits.nvim
Expand Down