fileMentionPattern top-level property

RegExp fileMentionPattern
final

Pattern for file mentions: @path/to/file or @./relative/path

Implementation

final fileMentionPattern = RegExp(
  r'@((?:\./|/|~/)[\w./-]+|[\w][\w./-]*\.[a-zA-Z]+)',
  multiLine: true,
);