You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 26, 2023. It is now read-only.
Something that I could find very handy in this great tool I use on a hourly basis, is the following.
When clicking on a binary file, I always use the option to open it as text. As you can imagine it's full of garbage with few strings it it. From a regex perspective, it is trivial to filter this.
But what would it take to implement this filter into this tool so that we'd have 3 different Text options instead of one?
Open as:
Text
Text (ASCII) by using the regex: [ -~] .
Text (Unicode) by using regex: \P{Cc} .
Check the proper multilingual regex such as: \P{Cc}.
Something that I could find very handy in this great tool I use on a hourly basis, is the following.
When clicking on a binary file, I always use the option to open it as
text. As you can imagine it's full of garbage with few strings it it. From a regex perspective, it is trivial to filter this.But what would it take to implement this filter into this tool so that we'd have 3 different
Textoptions instead of one?Open as:
TextText (ASCII)by using the regex:[ -~].Text (Unicode)by using regex:\P{Cc}.Check the proper multilingual regex such as:
\P{Cc}.Where in the code can I look at this?