Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface SearchInWorkspaceOptions

Hierarchy

  • SearchInWorkspaceOptions

Index

Properties

Optional exclude

exclude: string[]

Glob pattern for matching files and directories to exclude the search.

Optional include

include: string[]

Glob pattern for matching files and directories to include the search.

Optional includeIgnored

includeIgnored: boolean

Include all .gitignored and hidden files.

Optional matchCase

matchCase: boolean

Search case sensitively if true.

Optional matchWholeWord

matchWholeWord: boolean

Search whole words only if true.

Optional maxFileSize

maxFileSize: string

accepts suffixes of K, M or G which correspond to kilobytes, megabytes and gigabytes, respectively. If no suffix is provided the input is treated as bytes.

defaults to '20M'

Optional maxResults

maxResults: number

Maximum number of results to return. Defaults to unlimited.

Optional useRegExp

useRegExp: boolean

Use regular expressions for search if true.