From 74c953a67cce3223b37ca98868f801c901ea0aaa Mon Sep 17 00:00:00 2001 From: Github Actions Date: Tue, 18 Jan 2022 00:03:13 +0000 Subject: [PATCH] [docgen] Update README.md skip-checks: true --- README.md | 6 ++++++ doc/dressing.txt | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/README.md b/README.md index c3fc136..2470a30 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,9 @@ want to tweak, call this function: ```lua require('dressing').setup({ input = { + -- Set to false to disable the vim.ui.input implementation + enabled = true, + -- Default prompt string default_prompt = "➤ ", @@ -144,6 +147,9 @@ require('dressing').setup({ get_config = nil, }, select = { + -- Set to false to disable the vim.ui.select implementation + enabled = true, + -- Priority list of preferred vim.select implementations backend = { "telescope", "fzf_lua", "fzf", "builtin", "nui" }, diff --git a/doc/dressing.txt b/doc/dressing.txt index a8f0f97..9f1c5be 100644 --- a/doc/dressing.txt +++ b/doc/dressing.txt @@ -7,6 +7,9 @@ Configure dressing.nvim by calling the setup() function. > require('dressing').setup({ input = { + -- Set to false to disable the vim.ui.input implementation + enabled = true, + -- Default prompt string default_prompt = "➤ ", @@ -34,6 +37,9 @@ Configure dressing.nvim by calling the setup() function. get_config = nil, }, select = { + -- Set to false to disable the vim.ui.select implementation + enabled = true, + -- Priority list of preferred vim.select implementations backend = { "telescope", "fzf_lua", "fzf", "builtin", "nui" },