AmrDeveloper / CodeView

Android Library to make it easy to create an Code editor or IDE that support any languages and themes, with auto complete, auto indenting, snippets and more features
https://amrdeveloper.github.io/CodeView/
MIT License
384 stars 51 forks source link

App crash on searching for word containing special characters #30

Closed m-anshuman2166 closed 2 years ago

m-anshuman2166 commented 2 years ago

App crashes on searching for special characters like ( ) or { }

it happens due PatternSyntaxException

maybe you could update app to treat searched word like a string, not a pattern

AmrDeveloper commented 2 years ago

Hello @m-anshuman2166,

Thanks for your report, we can escape them or using Pattern.quote(),

Thanks