gitextract_btz8p0l7/ ├── .github/ │ └── workflows/ │ ├── build.yml │ └── release.yml ├── .gitignore ├── Charset.md ├── Chooser.md ├── LICENSE ├── Mode.md ├── README.md ├── Syntax.md ├── build.gradle ├── docs/ │ ├── 404.html │ ├── categories/ │ │ └── index.xml │ ├── css/ │ │ ├── custom.css │ │ └── styles.css │ ├── index.html │ ├── index.xml │ ├── introduction/ │ │ └── index.xml │ ├── sitemap.xml │ ├── tags/ │ │ └── index.xml │ └── using/ │ └── index.xml ├── fastlane/ │ └── metadata/ │ └── android/ │ ├── en/ │ │ ├── changelogs/ │ │ │ ├── 1193.txt │ │ │ ├── 162.txt │ │ │ ├── 163.txt │ │ │ ├── 164.txt │ │ │ ├── 165.txt │ │ │ ├── 166.txt │ │ │ ├── 167.txt │ │ │ ├── 168.txt │ │ │ ├── 169.txt │ │ │ ├── 170.txt │ │ │ ├── 171.txt │ │ │ ├── 172.txt │ │ │ ├── 173.txt │ │ │ ├── 174.txt │ │ │ ├── 175.txt │ │ │ ├── 176.txt │ │ │ ├── 177.txt │ │ │ ├── 178.txt │ │ │ ├── 179.txt │ │ │ ├── 180.txt │ │ │ ├── 181.txt │ │ │ ├── 182.txt │ │ │ ├── 183.txt │ │ │ ├── 184.txt │ │ │ ├── 185.txt │ │ │ ├── 186.txt │ │ │ ├── 187.txt │ │ │ ├── 188.txt │ │ │ ├── 189.txt │ │ │ ├── 190.txt │ │ │ ├── 191.txt │ │ │ ├── 192.txt │ │ │ ├── 194.txt │ │ │ ├── 195.txt │ │ │ ├── 196.txt │ │ │ └── 197.txt │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ ├── hu/ │ │ ├── changelogs/ │ │ │ ├── 162.txt │ │ │ ├── 163.txt │ │ │ ├── 164.txt │ │ │ ├── 165.txt │ │ │ ├── 166.txt │ │ │ ├── 167.txt │ │ │ ├── 168.txt │ │ │ ├── 169.txt │ │ │ ├── 170.txt │ │ │ └── 171.txt │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ └── ja/ │ ├── changelogs/ │ │ ├── 162.txt │ │ ├── 163.txt │ │ ├── 164.txt │ │ ├── 165.txt │ │ ├── 166.txt │ │ ├── 167.txt │ │ ├── 168.txt │ │ ├── 169.txt │ │ ├── 170.txt │ │ ├── 171.txt │ │ ├── 172.txt │ │ └── 173.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat └── src/ └── main/ ├── AndroidManifest.xml ├── java/ │ ├── android/ │ │ └── support/ │ │ └── v4/ │ │ └── content/ │ │ └── FileProvider.java │ ├── com/ │ │ └── ibm/ │ │ └── icu/ │ │ └── text/ │ │ ├── CharsetDetector.java │ │ ├── CharsetMatch.java │ │ ├── CharsetRecog_2022.java │ │ ├── CharsetRecog_UTF8.java │ │ ├── CharsetRecog_Unicode.java │ │ ├── CharsetRecog_mbcs.java │ │ ├── CharsetRecog_sbcs.java │ │ └── CharsetRecognizer.java │ └── org/ │ └── billthefarmer/ │ └── editor/ │ ├── Editor.java │ ├── FileAdapter.java │ ├── FileUtils.java │ ├── NewFile.java │ └── OpenFile.java └── res/ ├── color/ │ └── text_color_retro.xml ├── drawable/ │ ├── ic_add_black_24dp.xml │ ├── ic_add_white_24dp.xml │ ├── ic_edit_black_24dp.xml │ ├── ic_edit_white_24dp.xml │ ├── ic_folder_open_black_24dp.xml │ ├── ic_folder_open_white_24dp.xml │ ├── ic_image_black_24dp.xml │ ├── ic_image_white_24dp.xml │ ├── ic_list_black_24dp.xml │ ├── ic_list_white_24dp.xml │ ├── ic_reply_black_24dp.xml │ ├── ic_reply_white_24dp.xml │ ├── ic_save_black_24dp.xml │ ├── ic_save_white_24dp.xml │ ├── ic_sd_storage_black_24dp.xml │ ├── ic_sd_storage_white_24dp.xml │ ├── ic_stop_black_24dp.xml │ ├── ic_stop_white_24dp.xml │ ├── ic_videocam_black_24dp.xml │ ├── ic_videocam_white_24dp.xml │ ├── ic_volume_up_black_24dp.xml │ └── ic_volume_up_white_24dp.xml ├── layout/ │ ├── custom.xml │ ├── edit.xml │ ├── file.xml │ ├── open_file.xml │ ├── save_path.xml │ ├── seek_bar.xml │ └── wrap.xml ├── menu/ │ └── main.xml ├── values/ │ ├── arrays.xml │ ├── attrs.xml │ ├── colours.xml │ ├── strings.xml │ └── styles.xml ├── values-ar/ │ └── strings.xml ├── values-be/ │ └── strings.xml ├── values-de/ │ └── strings.xml ├── values-el/ │ └── strings.xml ├── values-es/ │ └── strings.xml ├── values-eu/ │ └── strings.xml ├── values-fa/ │ └── strings.xml ├── values-fr/ │ └── strings.xml ├── values-hu/ │ └── strings.xml ├── values-is/ │ └── strings.xml ├── values-it/ │ └── strings.xml ├── values-ja/ │ └── strings.xml ├── values-ku-rIQ/ │ └── strings.xml ├── values-lv/ │ └── strings.xml ├── values-nl/ │ └── strings.xml ├── values-pl/ │ └── strings.xml ├── values-pt/ │ └── strings.xml ├── values-pt-rBR/ │ └── strings.xml ├── values-ru/ │ └── strings.xml ├── values-tr/ │ └── strings.xml ├── values-uk/ │ └── strings.xml ├── values-zh-rCN/ │ └── strings.xml ├── values-zh-rTW/ │ └── strings.xml └── xml/ ├── filepaths.xml └── shortcuts.xml