plugins.telescope.extensions.live-grep-args.settings

settings for the live-grep-args telescope extension.

Type: attribute set of anything

Default: { }

Example:

{
  auto_quoting = true;
  mappings = {
    i = {
      "<C-i>" = {
        __raw = "require(\"telescope-live-grep-args.actions\").quote_prompt({ postfix = \" --iglob \" })";
      };
      "<C-k>" = {
        __raw = "require(\"telescope-live-grep-args.actions\").quote_prompt()";
      };
      "<C-space>" = {
        __raw = "require(\"telescope-live-grep-args.actions\").actions.to_fuzzy_refine";
      };
    };
  };
  theme = "dropdown";
}

Declared by:

plugins.telescope.extensions.live-grep-args.settings.additional_args

Additional arguments to pass to command.

Type: null or (list of (string or raw lua code))

Default: null

Plugin default: null

Declared by:

plugins.telescope.extensions.live-grep-args.settings.auto_quoting

Enable or disable auto quoting of searches.

Type: null or boolean or raw lua code

Default: null

Plugin default: true

Declared by:

plugins.telescope.extensions.live-grep-args.settings.mappings

Extension specific mappings to various live-grep-args actions.

Type: null or (attribute set of (anything or raw lua code))

Default: null

Plugin default: null

Declared by:

plugins.telescope.extensions.live-grep-args.settings.search_dirs

Directory/directories/files to search.

Paths are expanded and appended to the grep command.

Type: null or (list of (string or raw lua code))

Default: null

Plugin default: null

Declared by:

plugins.telescope.extensions.live-grep-args.settings.theme

Theme for telescope window.

Can be a string representing a theme name or a table with theme options.

Type: null or string or attribute set of anything

Default: null

Plugin default: null

Declared by:

plugins.telescope.extensions.live-grep-args.settings.vimgrep_arguments

Arguments to pass to command.

Type: null or (list of (string or raw lua code))

Default: null

Plugin default: null

Declared by: