-
Notifications
You must be signed in to change notification settings - Fork 2
Allow custom regex patterns for URL detection #93
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Problem
URL detection regex is hardcoded; users can't customize detection rules.
Solution
Allow custom regex patterns via configuration.
Benefits
- Detect custom URI schemes
- Project-specific URL patterns
- Enhanced detection for specific domains
Configuration Example
{
"customPatterns": [
"custom://[^\\s]+",
"internal:[a-z0-9-]+"
]
}Files to Modify
src/urlDetector.ts- Make regex configurablesrc/options.ts- AddcustomPatternsoption
Priority
Phase 3 - Advanced Features (Medium Impact, Low Effort)
Related to TODO.md section 3.3
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request