nvim: search all man
section with Telescope
This commit is contained in:
parent
841d9bd600
commit
448513ad70
1 changed files with 4 additions and 1 deletions
|
@ -23,6 +23,9 @@ local pickers = setmetatable({
|
||||||
no_ignore = true,
|
no_ignore = true,
|
||||||
no_ignore_parent = true,
|
no_ignore_parent = true,
|
||||||
}),
|
}),
|
||||||
|
all_man_pages = builtin_picker("man_pages", {
|
||||||
|
sections = { "ALL" },
|
||||||
|
}),
|
||||||
colorscheme = builtin_picker("colorscheme", { enable_preview = true }),
|
colorscheme = builtin_picker("colorscheme", { enable_preview = true }),
|
||||||
diagnostics = builtin_picker("diagnostics", { bufnr = 0 }),
|
diagnostics = builtin_picker("diagnostics", { bufnr = 0 }),
|
||||||
dotfiles = builtin_picker("find_files", { cwd = "~/.dotfiles", hidden = true }),
|
dotfiles = builtin_picker("find_files", { cwd = "~/.dotfiles", hidden = true }),
|
||||||
|
@ -77,7 +80,7 @@ return {
|
||||||
{ lhs"k", pickers.keymaps " Keymaps" , desc = desc("[k]eymaps") },
|
{ lhs"k", pickers.keymaps " Keymaps" , desc = desc("[k]eymaps") },
|
||||||
{ lhs"K", pickers.help_tags " Help tags" , desc = desc("[K] help/documentation") },
|
{ lhs"K", pickers.help_tags " Help tags" , desc = desc("[K] help/documentation") },
|
||||||
{ lhs"l", pickers.loclist " Location list" , desc = desc("[l]ocation List") },
|
{ lhs"l", pickers.loclist " Location list" , desc = desc("[l]ocation List") },
|
||||||
{ lhs"m", pickers.man_pages " Man pages" , desc = desc("[m]an pages") },
|
{ lhs"m", pickers.all_man_pages " Man pages" , desc = desc("[m]an pages") },
|
||||||
--lhs"n" used in vim-notify
|
--lhs"n" used in vim-notify
|
||||||
{ lhs"o", pickers.vim_options " Vim options" , desc = desc("[o]ptions") },
|
{ lhs"o", pickers.vim_options " Vim options" , desc = desc("[o]ptions") },
|
||||||
--lhs"p"
|
--lhs"p"
|
||||||
|
|
Loading…
Add table
Reference in a new issue