Args

data class Args(val path: String, val regex: String, val limit: Int = 25, val skip: Int = 0, val caseSensitive: Boolean = false)(source)

Parameters for a regex content search.

Constructors

Link copied to clipboard
constructor(path: String, regex: String, limit: Int = 25, skip: Int = 0, caseSensitive: Boolean = false)

Properties

Link copied to clipboard
@SerialName(value = "case_sensitive")
val caseSensitive: Boolean

If true, case-sensitive match; otherwise ignore case.

Link copied to clipboard
val limit: Int

Max matching files to return (default: 25).

Link copied to clipboard

Absolute start directory or file path.

Link copied to clipboard

Regex pattern to match in text files.

Link copied to clipboard
val skip: Int

Matching files to skip (default: 0).