gabrielsimoes / cfparser.vim

A codeforces plugin ported from emacs plugin gnull/cfparser.
Do What The F*ck You Want To Public License
48 stars 10 forks source link

Fixes sed substituation #6

Closed jakobkogler closed 7 years ago

jakobkogler commented 7 years ago

One more small bug that I found. Substitutions with sed as in sed 's/.in//' use regex by default. Therefore a path ~/YinYang/123A/0.in gets substituted to ~/Yang/123A/0.in instead of ~/YinYang/123A/0.

I escaping the point and added a $ at the end to prevent this.

gabrielsimoes commented 7 years ago

thanks again!