diff --git a/docs-preview-559/options.html b/docs-preview-559/options.html index 2b5fa607..8b88536f 100644 --- a/docs-preview-559/options.html +++ b/docs-preview-559/options.html @@ -28098,7 +28098,9 @@ boolean

-

TODO

+

Individual extension configurations containing name, packages and setup +fields to resolve dependencies, handle load_extension calls and add the setup +table into the extensions portion of Telescope’s setup table.

Type: list of attribute set of (submodule)

@@ -28106,6 +28108,16 @@ list of attribute set of (submodule)

Default: [ ]

+

Example:

[
+  {
+    name = "fzf";
+    packages = [pkgs.vimPlugins.telescope-fzf-native-nvim];
+    setup = {fzf = {fuzzy = true;};};
+  }
+]
+
+
+

Declared by:

@@ -28151,6 +28163,37 @@ list of (string or package)

Type: string

+

Declared by:

+ + +
+ +<nvf/modules/plugins/utility/telescope/telescope.nix> + +
+ +
+ + vim.telescope.extensions.*.<name>.setup + + +
+
+

Named attribute set to be inserted into Telescope’s extensions table.

+ +

Type: +attribute set of anything

+ +

Default: +{ }

+ +

Example:

{
+  fzf = {
+    fuzzy = true;
+  };
+}
+
+

Declared by:

@@ -28704,6 +28747,30 @@ string

Default: " "

+

Declared by:

+ + +
+ +<nvf/modules/plugins/utility/telescope/telescope.nix> + +
+ +
+ + vim.telescope.setupOpts.defaults.extensions + + +
+
+

Attribute set containing per-extension settings for Telescope

+ +

Type: +attribute set of anything

+ +

Default: +{ }

+

Declared by:

@@ -29005,7 +29072,7 @@ list of (one of “hidden”, “tail”, “absolute”, “smart”, “shorte
-

Command to use for finding files. If using an executable from PATH then you must +

Command to use for finding files. If using an executable from PATH then you must make sure that the package is available in vim.extraPackages.

Type: