FileOperationPattern

langoustine.lsp.structures.FileOperationPattern
See theFileOperationPattern companion object
case class FileOperationPattern(glob: String, matches: Opt[FileOperationPatternKind], options: Opt[FileOperationPatternOptions])

A pattern to describe in which file operation requests or notifications the server is interested in receiving.

Value parameters

glob

The glob pattern to match. Glob patterns can have the following syntax:

  • * to match one or more characters in a path segment
  • ? to match on one character in a path segment
  • ** to match any number of path segments, including none
  • {} to group sub patterns into an OR expression. (e.g. **​.{ts,js} matches all TypeScript and JavaScript files)
  • [] to declare a range of characters to match in a path segment (e.g., example.[0-9] to match on example.0, example.1, …)
  • [!...] to negate a range of characters to match in a path segment (e.g., example.[!0-9] to match on example.a, example.b, but not example.0)
matches

Whether to match files or folders with this pattern. Matches both if undefined.

options

Additional options used during matching.

Attributes

Since

3.16.0

Companion
object
Source
structures.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product