fileMentionPattern top-level property
Pattern for file mentions: @path/to/file or @./relative/path
Implementation
final fileMentionPattern = RegExp(
r'@((?:\./|/|~/)[\w./-]+|[\w][\w./-]*\.[a-zA-Z]+)',
multiLine: true,
);
Pattern for file mentions: @path/to/file or @./relative/path
final fileMentionPattern = RegExp(
r'@((?:\./|/|~/)[\w./-]+|[\w][\w./-]*\.[a-zA-Z]+)',
multiLine: true,
);