Skip to content

Commit

Permalink
[docgen] CI: autogenerate vimdoc
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
Github Actions committed Feb 13, 2025
1 parent 49bd136 commit 8633175
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion doc/fzf-lua.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*fzf-lua.txt* For Neovim >= 0.7.0 Last change: 2025 February 11
*fzf-lua.txt* For Neovim >= 0.7.0 Last change: 2025 February 13

==============================================================================
Table of Contents *fzf-lua-table-of-contents*
Expand Down Expand Up @@ -322,6 +322,7 @@ MISC *fzf-lua-misc*
| `registers` | :registers |
| `tagstack` | :tags |
| `autocmds` | :autocmd |
| `nvim_options` | neovim options |
| `keymaps` | key mappings |
| `filetypes` | filetypes |
| `menus` | menus |
Expand Down Expand Up @@ -1101,6 +1102,15 @@ CUSTOMIZATION *fzf-lua-customization*
["ctrl-t"] = actions.keymap_tabedit,
},
},
nvim_options = {
prompt = "Nvim Options> ",
separator = "│", -- separator between option name and value
color_values = true, -- colorize boolean values
actions = {
["enter"] = { fn = actions.nvim_opt_edit_local, reload = true },
["alt-enter"] = { fn = actions.nvim_opt_edit_global, reload = true },
},
},
quickfix = {
file_icons = true,
only_valid = false, -- select among only the valid quickfix entries
Expand Down

0 comments on commit 8633175

Please sign in to comment.