ice9js / ace-jump-sublime

Jump between characters in Sublime Text 3 without using a mouse at ease
MIT License
202 stars 30 forks source link

Fix python escaping < and > while view.find() does not need it #58

Closed MANGO1234 closed 7 years ago

MANGO1234 commented 7 years ago

Jumping to < and > in character mode right now doesn't work because re.escape() escape them to '\<' and '>' but sublime uses '<' and '>'.

ice9js commented 7 years ago

Thanks!