diff --git a/doc/telescope.txt b/doc/telescope.txt index 7004e85..b7e06a3 100644 --- a/doc/telescope.txt +++ b/doc/telescope.txt @@ -1435,6 +1435,9 @@ builtin.colorscheme({opts}) *telescope.builtin.colorscheme()* {opts} (table) options to pass to the picker Options: ~ + {colors} (table) a list of additional colorschemes to + explicitly make available to telescope + (default: {}) {enable_preview} (boolean) if true, will preview the selected color diff --git a/lua/telescope/builtin/init.lua b/lua/telescope/builtin/init.lua index e40ef2c..355a79f 100644 --- a/lua/telescope/builtin/init.lua +++ b/lua/telescope/builtin/init.lua @@ -354,6 +354,7 @@ builtin.buffers = require_on_exported_call("telescope.builtin.__internal").buffe --- Lists available colorschemes and applies them on `` ---@param opts table: options to pass to the picker +---@field colors table: a list of additional colorschemes to explicitly make available to telescope (default: {}) ---@field enable_preview boolean: if true, will preview the selected color builtin.colorscheme = require_on_exported_call("telescope.builtin.__internal").colorscheme