chrmarti / vscode-regex

MIT License
152 stars 34 forks source link

Add rails support #37

Open ViriCruz opened 4 years ago

ViriCruz commented 4 years ago

It would be awesome if I can use this on my rails projects.

xpe commented 3 years ago

@ViriCruz Would supporting Ruby cover what you are looking for? (I am not aware of Rails-specific Regex aspects; let me know if I've overlooked anything.)

htatche commented 2 years ago

@ViriCruz Would supporting Ruby cover what you are looking for? (I am not aware of Rails-specific Regex aspects; let me know if I've overlooked anything.)

@xpe I'll answer that one - yes it would :)

More info on Ruby's regex here:

A Regexp holds a regular expression, used to match a pattern against strings. Regexps are created using the /.../ and %r{...} literals, and by the Regexp::new constructor.

https://ruby-doc.org/core-2.7.1/Regexp.html