necaris / conda.el

Emacs helper library (and minor mode) to work with conda environments
MIT License
153 stars 49 forks source link

Add '_' and '.' in regex when discovering conda env name from Yml #27

Closed captainmalloc closed 5 years ago

captainmalloc commented 5 years ago

Current regex is quite restrictive as allow only "[A-z0-9-]+" alphanumerical chars plus '-'. The proposal here is to also accept '' and '.' : "[A-z0-9-.]+"

necaris commented 5 years ago

Great PR! Thank you!