From d7d3ea901580a7ef43aa9a2870ff36673eeadd6c Mon Sep 17 00:00:00 2001 From: "C.D. MacEachern" Date: Wed, 28 Dec 2022 07:41:30 -0500 Subject: [PATCH] fix(docs): point to correct lua modules (#2284) --- doc/telescope.txt | 6 +++--- lua/telescope/config.lua | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/telescope.txt b/doc/telescope.txt index 3f26437..3515469 100644 --- a/doc/telescope.txt +++ b/doc/telescope.txt @@ -192,8 +192,8 @@ telescope.setup({opts}) *telescope.setup()* *telescope.defaults.cycle_layout_list* cycle_layout_list: ~ - Determines the layouts to cycle through when using `actions.cycle_layout_next` - and `actions.cycle_layout_prev`. + Determines the layouts to cycle through when using `actions.layout.cycle_layout_next` + and `actions.layout.cycle_layout_prev`. Should be a list of "layout setups". Each "layout setup" can take one of two forms: 1. string
@@ -514,7 +514,7 @@ telescope.setup({opts}) *telescope.setup()* - msg_bg_fillchar: Character to fill background of unpreviewable buffers with Default: "╱" - hide_on_startup: Hide previewer when picker starts. Previewer can be toggled - with actions.toggle_preview. + with actions.layout.toggle_preview. Default: false diff --git a/lua/telescope/config.lua b/lua/telescope/config.lua index 8eeb60e..82be065 100644 --- a/lua/telescope/config.lua +++ b/lua/telescope/config.lua @@ -194,8 +194,8 @@ append( "cycle_layout_list", { "horizontal", "vertical" }, [[ - Determines the layouts to cycle through when using `actions.cycle_layout_next` - and `actions.cycle_layout_prev`. + Determines the layouts to cycle through when using `actions.layout.cycle_layout_next` + and `actions.layout.cycle_layout_prev`. Should be a list of "layout setups". Each "layout setup" can take one of two forms: 1. string
@@ -611,7 +611,7 @@ append( - msg_bg_fillchar: Character to fill background of unpreviewable buffers with Default: "╱" - hide_on_startup: Hide previewer when picker starts. Previewer can be toggled - with actions.toggle_preview. + with actions.layout.toggle_preview. Default: false ]] )