gitRefPattern top-level property
Pattern for git ref mentions: @branch:name or @commit:hash
Implementation
final gitRefPattern = RegExp(r'@(branch|commit|tag):(\S+)', multiLine: true);
Pattern for git ref mentions: @branch:name or @commit:hash
final gitRefPattern = RegExp(r'@(branch|commit|tag):(\S+)', multiLine: true);