├── .gitignore ├── .gitmodules ├── .metadata ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_editor │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── config.default.json ├── config.json └── extensions.zip ├── desktop └── ashlar.desktop ├── editor ├── fonts ├── DejaVu Sans Mono for Powerline.ttf ├── FiraCode-Regular.ttf └── Source Code Pro for Powerline.otf ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── common.dart ├── configure.dart ├── editor │ ├── block.dart │ ├── controller.dart │ ├── cursor.dart │ ├── decorations.dart │ ├── document.dart │ ├── editor.dart │ ├── history.dart │ ├── minimap.dart │ ├── search.dart │ └── view.dart ├── layout │ ├── explorer.dart │ ├── layout.dart │ ├── statusbar.dart │ └── tabs.dart ├── main.dart ├── services.dart ├── services │ ├── app.dart │ ├── explorer │ │ ├── filesystem.dart │ │ ├── googledrive.dart │ │ ├── localfs.dart │ │ └── sftp.dart │ ├── ffi │ │ ├── bridge.dart │ │ └── highlighter.dart │ ├── highlight │ │ ├── fhl.dart │ │ ├── highlighter.dart │ │ ├── theme.dart │ │ └── tmparser.dart │ ├── indexer │ │ ├── filesearch.dart │ │ ├── indexer.dart │ │ └── levenshtein.dart │ ├── input.dart │ ├── keybindings.dart │ ├── timer.dart │ ├── ui │ │ ├── menu.dart │ │ ├── modal.dart │ │ ├── palette.dart │ │ ├── status.dart │ │ └── ui.dart │ └── util.dart ├── widgets.dart └── widgets │ ├── editor.dart │ ├── explorer.dart │ └── minimap.dart ├── libs ├── CMakeLists.txt ├── Onigmo │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── COPYING │ ├── HISTORY │ ├── INSTALL │ ├── Makefile.am │ ├── README │ ├── README.ja │ ├── README.md │ ├── appveyor.yml │ ├── autogen.sh │ ├── build_nmake.cmd │ ├── configure.ac │ ├── doc │ │ ├── API │ │ ├── API.ja │ │ ├── FAQ │ │ ├── FAQ.ja │ │ ├── RE │ │ ├── RE.ja │ │ └── UnicodeProps.txt │ ├── enc │ │ ├── ascii.c │ │ ├── big5.c │ │ ├── cp949.c │ │ ├── emacs_mule.c │ │ ├── euc_jp.c │ │ ├── euc_kr.c │ │ ├── euc_tw.c │ │ ├── gb18030.c │ │ ├── gb2312.c │ │ ├── gbk.c │ │ ├── iso_8859.h │ │ ├── iso_8859_1.c │ │ ├── iso_8859_10.c │ │ ├── iso_8859_11.c │ │ ├── iso_8859_13.c │ │ ├── iso_8859_14.c │ │ ├── iso_8859_15.c │ │ ├── iso_8859_16.c │ │ ├── iso_8859_2.c │ │ ├── iso_8859_3.c │ │ ├── iso_8859_4.c │ │ ├── iso_8859_5.c │ │ ├── iso_8859_6.c │ │ ├── iso_8859_7.c │ │ ├── iso_8859_8.c │ │ ├── iso_8859_9.c │ │ ├── jis │ │ │ ├── props.h │ │ │ └── props.kwd │ │ ├── koi8_r.c │ │ ├── koi8_u.c │ │ ├── mktable.c │ │ ├── shift_jis.c │ │ ├── shift_jis.h │ │ ├── unicode.c │ │ ├── unicode │ │ │ ├── casefold.h │ │ │ └── name2ctype.h │ │ ├── us_ascii.c │ │ ├── utf_16be.c │ │ ├── utf_16le.c │ │ ├── utf_32be.c │ │ ├── utf_32le.c │ │ ├── utf_8.c │ │ ├── windows_1250.c │ │ ├── windows_1251.c │ │ ├── windows_1252.c │ │ ├── windows_1253.c │ │ ├── windows_1254.c │ │ ├── windows_1257.c │ │ └── windows_31j.c │ ├── onigmo-config.in │ ├── onigmo.h │ ├── onigmo.pc.in │ ├── onigmo.py │ ├── onigmognu.h │ ├── onigmoposix.h │ ├── regcomp.c │ ├── regenc.c │ ├── regenc.h │ ├── regerror.c │ ├── regexec.c │ ├── regext.c │ ├── reggnu.c │ ├── regint.h │ ├── regparse.c │ ├── regparse.h │ ├── regposerr.c │ ├── regposix.c │ ├── regsyntax.c │ ├── regtrav.c │ ├── regversion.c │ ├── sample │ │ ├── Makefile.am │ │ ├── crnl.c │ │ ├── encode.c │ │ ├── listcap.c │ │ ├── names.c │ │ ├── posix.c │ │ ├── scan.c │ │ ├── simple.c │ │ ├── sql.c │ │ └── syntax.c │ ├── st.c │ ├── st.h │ ├── test.rb │ ├── test_enc_utf8.c │ ├── testc.c │ ├── testconv.rb │ ├── testconvu.rb │ ├── testpy.py │ ├── testu.c │ ├── tool │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── case-folding.rb │ │ ├── convert-jis-props.sh │ │ ├── download-ucd.sh │ │ ├── enc-unicode.rb │ │ └── update-doc.py │ └── win32 │ │ ├── Makefile │ │ ├── Makefile.mingw │ │ ├── config.h │ │ ├── makedef.py │ │ ├── onigmo.rc │ │ └── testc.c ├── highlighter.def ├── highlighter │ ├── api.cpp │ ├── api.h │ ├── git.cpp │ ├── git │ │ ├── git_diff.inc.cpp │ │ └── git_status.inc.cpp │ ├── highlighter.cpp │ ├── ssh.cpp │ └── treesitter.cpp ├── jsoncpp │ ├── .clang-format │ ├── .clang-tidy │ ├── .gitattributes │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ ├── .gitignore │ ├── .travis.yml │ ├── .travis_scripts │ │ ├── cmake_builder.sh │ │ ├── meson_builder.sh │ │ ├── run-clang-format.py │ │ ├── run-clang-format.sh │ │ ├── travis.before_install.linux.sh │ │ ├── travis.before_install.osx.sh │ │ ├── travis.install.linux.sh │ │ └── travis.install.osx.sh │ ├── AUTHORS │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── CTestConfig.cmake │ ├── LICENSE │ ├── README.md │ ├── amalgamate.py │ ├── appveyor.yml │ ├── cmake │ │ └── JoinPaths.cmake │ ├── dev.makefile │ ├── devtools │ │ ├── __init__.py │ │ ├── agent_vmw7.json │ │ ├── agent_vmxp.json │ │ ├── antglob.py │ │ ├── batchbuild.py │ │ ├── fixeol.py │ │ ├── licenseupdater.py │ │ └── tarball.py │ ├── doc │ │ ├── doxyfile.in │ │ ├── footer.html │ │ ├── header.html │ │ ├── jsoncpp.dox │ │ ├── readme.txt │ │ ├── roadmap.dox │ │ └── web_doxyfile.in │ ├── doxybuild.py │ ├── example │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── readFromStream │ │ │ ├── errorFormat.json │ │ │ ├── readFromStream.cpp │ │ │ └── withComment.json │ │ ├── readFromString │ │ │ └── readFromString.cpp │ │ ├── streamWrite │ │ │ └── streamWrite.cpp │ │ └── stringWrite │ │ │ └── stringWrite.cpp │ ├── get_version.pl │ ├── include │ │ ├── CMakeLists.txt │ │ ├── PreventInBuildInstalls.cmake │ │ ├── PreventInSourceBuilds.cmake │ │ └── json │ │ │ ├── allocator.h │ │ │ ├── assertions.h │ │ │ ├── config.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── json_features.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ ├── version.h │ │ │ └── writer.h │ ├── jsoncpp-namespaced-targets.cmake │ ├── jsoncppConfig.cmake.in │ ├── meson.build │ ├── meson_options.txt │ ├── pkg-config │ │ └── jsoncpp.pc.in │ ├── reformat.sh │ ├── src │ │ ├── CMakeLists.txt │ │ ├── jsontestrunner │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── lib_json │ │ │ ├── CMakeLists.txt │ │ │ ├── json_reader.cpp │ │ │ ├── json_tool.h │ │ │ ├── json_value.cpp │ │ │ ├── json_valueiterator.inl │ │ │ └── json_writer.cpp │ │ └── test_lib_json │ │ │ ├── CMakeLists.txt │ │ │ ├── fuzz.cpp │ │ │ ├── fuzz.dict │ │ │ ├── fuzz.h │ │ │ ├── jsontest.cpp │ │ │ ├── jsontest.h │ │ │ └── main.cpp │ ├── test │ │ ├── cleantests.py │ │ ├── data │ │ │ ├── fail_invalid_quote.json │ │ │ ├── fail_test_array_01.json │ │ │ ├── fail_test_array_02.json │ │ │ ├── fail_test_object_01.json │ │ │ ├── fail_test_stack_limit.json │ │ │ ├── legacy_test_array_01.expected │ │ │ ├── legacy_test_array_01.json │ │ │ ├── legacy_test_array_02.expected │ │ │ ├── legacy_test_array_02.json │ │ │ ├── legacy_test_array_03.expected │ │ │ ├── legacy_test_array_03.json │ │ │ ├── legacy_test_array_04.expected │ │ │ ├── legacy_test_array_04.json │ │ │ ├── legacy_test_array_05.expected │ │ │ ├── legacy_test_array_05.json │ │ │ ├── legacy_test_array_06.expected │ │ │ ├── legacy_test_array_06.json │ │ │ ├── legacy_test_array_07.expected │ │ │ ├── legacy_test_array_07.json │ │ │ ├── legacy_test_basic_01.expected │ │ │ ├── legacy_test_basic_01.json │ │ │ ├── legacy_test_basic_02.expected │ │ │ ├── legacy_test_basic_02.json │ │ │ ├── legacy_test_basic_03.expected │ │ │ ├── legacy_test_basic_03.json │ │ │ ├── legacy_test_basic_04.expected │ │ │ ├── legacy_test_basic_04.json │ │ │ ├── legacy_test_basic_05.expected │ │ │ ├── legacy_test_basic_05.json │ │ │ ├── legacy_test_basic_06.expected │ │ │ ├── legacy_test_basic_06.json │ │ │ ├── legacy_test_basic_07.expected │ │ │ ├── legacy_test_basic_07.json │ │ │ ├── legacy_test_basic_08.expected │ │ │ ├── legacy_test_basic_08.json │ │ │ ├── legacy_test_basic_09.expected │ │ │ ├── legacy_test_basic_09.json │ │ │ ├── legacy_test_comment_00.expected │ │ │ ├── legacy_test_comment_00.json │ │ │ ├── legacy_test_comment_01.expected │ │ │ ├── legacy_test_comment_01.json │ │ │ ├── legacy_test_comment_02.expected │ │ │ ├── legacy_test_comment_02.json │ │ │ ├── legacy_test_complex_01.expected │ │ │ ├── legacy_test_complex_01.json │ │ │ ├── legacy_test_integer_01.expected │ │ │ ├── legacy_test_integer_01.json │ │ │ ├── legacy_test_integer_02.expected │ │ │ ├── legacy_test_integer_02.json │ │ │ ├── legacy_test_integer_03.expected │ │ │ ├── legacy_test_integer_03.json │ │ │ ├── legacy_test_integer_04.expected │ │ │ ├── legacy_test_integer_04.json │ │ │ ├── legacy_test_integer_05.expected │ │ │ ├── legacy_test_integer_05.json │ │ │ ├── legacy_test_integer_06_64bits.expected │ │ │ ├── legacy_test_integer_06_64bits.json │ │ │ ├── legacy_test_integer_07_64bits.expected │ │ │ ├── legacy_test_integer_07_64bits.json │ │ │ ├── legacy_test_integer_08_64bits.expected │ │ │ ├── legacy_test_integer_08_64bits.json │ │ │ ├── legacy_test_large_01.expected │ │ │ ├── legacy_test_large_01.json │ │ │ ├── legacy_test_object_01.expected │ │ │ ├── legacy_test_object_01.json │ │ │ ├── legacy_test_object_02.expected │ │ │ ├── legacy_test_object_02.json │ │ │ ├── legacy_test_object_03.expected │ │ │ ├── legacy_test_object_03.json │ │ │ ├── legacy_test_object_04.expected │ │ │ ├── legacy_test_object_04.json │ │ │ ├── legacy_test_preserve_comment_01.expected │ │ │ ├── legacy_test_preserve_comment_01.json │ │ │ ├── legacy_test_real_01.expected │ │ │ ├── legacy_test_real_01.json │ │ │ ├── legacy_test_real_02.expected │ │ │ ├── legacy_test_real_02.json │ │ │ ├── legacy_test_real_03.expected │ │ │ ├── legacy_test_real_03.json │ │ │ ├── legacy_test_real_04.expected │ │ │ ├── legacy_test_real_04.json │ │ │ ├── legacy_test_real_05.expected │ │ │ ├── legacy_test_real_05.json │ │ │ ├── legacy_test_real_06.expected │ │ │ ├── legacy_test_real_06.json │ │ │ ├── legacy_test_real_07.expected │ │ │ ├── legacy_test_real_07.json │ │ │ ├── legacy_test_real_08.expected │ │ │ ├── legacy_test_real_08.json │ │ │ ├── legacy_test_real_09.expected │ │ │ ├── legacy_test_real_09.json │ │ │ ├── legacy_test_real_10.expected │ │ │ ├── legacy_test_real_10.json │ │ │ ├── legacy_test_real_11.expected │ │ │ ├── legacy_test_real_11.json │ │ │ ├── legacy_test_real_12.expected │ │ │ ├── legacy_test_real_12.json │ │ │ ├── legacy_test_string_01.expected │ │ │ ├── legacy_test_string_01.json │ │ │ ├── legacy_test_string_02.expected │ │ │ ├── legacy_test_string_02.json │ │ │ ├── legacy_test_string_03.expected │ │ │ ├── legacy_test_string_03.json │ │ │ ├── legacy_test_string_04.expected │ │ │ ├── legacy_test_string_04.json │ │ │ ├── legacy_test_string_05.expected │ │ │ ├── legacy_test_string_05.json │ │ │ ├── legacy_test_string_unicode_01.expected │ │ │ ├── legacy_test_string_unicode_01.json │ │ │ ├── legacy_test_string_unicode_02.expected │ │ │ ├── legacy_test_string_unicode_02.json │ │ │ ├── legacy_test_string_unicode_03.expected │ │ │ ├── legacy_test_string_unicode_03.json │ │ │ ├── legacy_test_string_unicode_04.expected │ │ │ ├── legacy_test_string_unicode_04.json │ │ │ ├── legacy_test_string_unicode_05.expected │ │ │ ├── legacy_test_string_unicode_05.json │ │ │ ├── test_array_08.expected │ │ │ ├── test_array_08.json │ │ │ ├── test_object_05.expected │ │ │ └── test_object_05.json │ │ ├── generate_expected.py │ │ ├── jsonchecker │ │ │ ├── fail1.json │ │ │ ├── fail10.json │ │ │ ├── fail11.json │ │ │ ├── fail12.json │ │ │ ├── fail13.json │ │ │ ├── fail14.json │ │ │ ├── fail15.json │ │ │ ├── fail16.json │ │ │ ├── fail17.json │ │ │ ├── fail18.json │ │ │ ├── fail19.json │ │ │ ├── fail2.json │ │ │ ├── fail20.json │ │ │ ├── fail21.json │ │ │ ├── fail22.json │ │ │ ├── fail23.json │ │ │ ├── fail24.json │ │ │ ├── fail25.json │ │ │ ├── fail26.json │ │ │ ├── fail27.json │ │ │ ├── fail28.json │ │ │ ├── fail29.json │ │ │ ├── fail3.json │ │ │ ├── fail30.json │ │ │ ├── fail31.json │ │ │ ├── fail32.json │ │ │ ├── fail33.json │ │ │ ├── fail4.json │ │ │ ├── fail5.json │ │ │ ├── fail6.json │ │ │ ├── fail7.json │ │ │ ├── fail8.json │ │ │ ├── fail9.json │ │ │ ├── pass1.json │ │ │ ├── pass2.json │ │ │ ├── pass3.json │ │ │ └── readme.txt │ │ ├── pyjsontestrunner.py │ │ ├── runjsontests.py │ │ └── rununittests.py │ └── version.in ├── tinyxml2 │ ├── tinyxml2.cpp │ └── tinyxml2.h └── tm-parser │ ├── .clang-format │ ├── .gitignore │ ├── .gitmodules │ ├── meson.build │ ├── out.txt │ ├── screenshots │ ├── Screenshot from 2020-05-28 22-55-06.png │ ├── Screenshot from 2020-06-05 23-10-30.png │ ├── Screenshot from 2020-06-05 23-10-46.png │ ├── Screenshot from 2020-06-05 23-11-41.png │ └── Screenshot from 2020-06-05 23-13-41.png │ ├── test-cases │ ├── first-mate │ │ ├── README.md │ │ ├── fixtures │ │ │ ├── apply-end-pattern-last.json │ │ │ ├── c-plus-plus.json │ │ │ ├── c.json │ │ │ ├── coffee-script.json │ │ │ ├── content-name.json │ │ │ ├── css.json │ │ │ ├── forever.json │ │ │ ├── git-commit.json │ │ │ ├── hello.json │ │ │ ├── html-erb.json │ │ │ ├── html-rails.json │ │ │ ├── html.json │ │ │ ├── hyperlink.json │ │ │ ├── imaginary.json │ │ │ ├── include-external-repository-rule.json │ │ │ ├── infinite-loop.json │ │ │ ├── java.json │ │ │ ├── javascript-regex.json │ │ │ ├── javascript.json │ │ │ ├── json.json │ │ │ ├── latex.json │ │ │ ├── loops.json │ │ │ ├── makefile.json │ │ │ ├── multiline.json │ │ │ ├── nested-captures.json │ │ │ ├── objective-c-plus-plus.json │ │ │ ├── objective-c.json │ │ │ ├── php.json │ │ │ ├── python-regex.json │ │ │ ├── python.json │ │ │ ├── ruby-on-rails.json │ │ │ ├── ruby.json │ │ │ ├── scss.json │ │ │ ├── sql.json │ │ │ ├── text.json │ │ │ ├── thrift.json │ │ │ └── todo.json │ │ └── tests.json │ ├── onigtests │ │ └── fixtures │ │ │ ├── onigasm-issue3.js │ │ │ ├── php-onigasm-issue17.php │ │ │ ├── test-issue11.ts │ │ │ ├── test.cs │ │ │ └── typescript.js │ ├── suite1 │ │ ├── fixtures │ │ │ ├── 105.grammarA.json │ │ │ ├── 105.grammarB.json │ │ │ ├── 66.plist │ │ │ ├── Jade.json │ │ │ ├── Jade.tmLanguage │ │ │ ├── Jade22.json │ │ │ ├── Makefile.plist │ │ │ ├── Markdown.tmLanguage │ │ │ ├── Perl.plist │ │ │ ├── Pug.tmLanguage │ │ │ ├── Ruby.plist │ │ │ ├── YAML.tmLanguage │ │ │ ├── aspvbnet.plist │ │ │ ├── groovy.json │ │ │ ├── html.json │ │ │ ├── html2.json │ │ │ ├── javascript.json │ │ │ ├── markdown.plist │ │ │ ├── php.plist │ │ │ ├── testlang12.plist │ │ │ └── whileLang.plist │ │ ├── tests.json │ │ └── whileTests.json │ └── themes │ │ ├── .gitignore │ │ ├── Abyss.tmTheme │ │ ├── Kimbie_dark.tmTheme │ │ ├── Monokai.tmTheme │ │ ├── QuietLight.tmTheme │ │ ├── Solarized-dark.tmTheme │ │ ├── Solarized-light.tmTheme │ │ ├── Tomorrow-Night-Blue.tmTheme │ │ ├── bluloco.json │ │ ├── dark_plus.json │ │ ├── dark_vs.json │ │ ├── dimmed-monokai.tmTheme │ │ ├── dracula.json │ │ ├── go │ │ ├── colorize-fixtures │ │ │ ├── test-13777.go │ │ │ └── test.go │ │ ├── colorize-results │ │ │ ├── test-13777_go.json │ │ │ └── test_go.json │ │ └── go.json │ │ ├── grammars.json │ │ ├── hc_black.json │ │ ├── languages.json │ │ ├── light_plus.json │ │ ├── light_vs.json │ │ ├── monokai-color-theme.json │ │ ├── red.tmTheme │ │ ├── syntaxes │ │ ├── ASPVBnet.plist │ │ ├── Batch File.tmLanguage │ │ ├── Clojure.tmLanguage │ │ ├── Dockerfile.tmLanguage │ │ ├── Groovy.tmLanguage │ │ ├── Handlebars.json │ │ ├── JSON.tmLanguage │ │ ├── Jade.json │ │ ├── JavaScript.tmLanguage.json │ │ ├── MagicPython.tmLanguage.json │ │ ├── MagicRegExp.tmLanguage.json │ │ ├── Makefile.json │ │ ├── Objective-C.tmLanguage │ │ ├── Perl 6.tmLanguage │ │ ├── Perl.plist │ │ ├── Platform.tmLanguage │ │ ├── PowershellSyntax.tmLanguage │ │ ├── R.plist │ │ ├── Regular Expressions (JavaScript).tmLanguage │ │ ├── Ruby.plist │ │ ├── SQL.plist │ │ ├── Shell-Unix-Bash.tmLanguage.json │ │ ├── TypeScript.tmLanguage.json │ │ ├── TypeScriptReact.tmLanguage.json │ │ ├── c++.json │ │ ├── c.json │ │ ├── coffeescript.json │ │ ├── cshtml.json │ │ ├── css.plist │ │ ├── diff.tmLanguage │ │ ├── fsharp.json │ │ ├── git-commit.tmLanguage │ │ ├── git-rebase.tmLanguage │ │ ├── go.json │ │ ├── html.json │ │ ├── java.json │ │ ├── less.tmLanguage.json │ │ ├── lua.json │ │ ├── markdown.tmLanguage │ │ ├── php.json │ │ ├── properties.plist │ │ ├── rust.json │ │ ├── scss.json │ │ ├── shaderlab.json │ │ ├── swift.json │ │ ├── xml.json │ │ ├── xsl.json │ │ └── yaml.json │ │ ├── tests │ │ ├── 12750.html │ │ ├── 12750.html.result │ │ ├── 13448.html │ │ ├── 13448.html.result │ │ ├── 14119.less │ │ ├── 14119.less.result │ │ ├── COMMIT_EDITMSG │ │ ├── COMMIT_EDITMSG.result │ │ ├── Dockerfile │ │ ├── Dockerfile.result │ │ ├── basic.java │ │ ├── basic.java.result │ │ ├── git-rebase-todo │ │ ├── git-rebase-todo.result │ │ ├── issue-1550.yaml │ │ ├── issue-1550.yaml.result │ │ ├── issue-4008.yaml │ │ ├── issue-4008.yaml.result │ │ ├── issue-6303.yaml │ │ ├── issue-6303.yaml.result │ │ ├── makefile │ │ ├── makefile.result │ │ ├── test-13777.go │ │ ├── test-13777.go.result │ │ ├── test-4287.jade │ │ ├── test-4287.jade.result │ │ ├── test-6611.rs │ │ ├── test-6611.rs.result │ │ ├── test-7115.xml │ │ ├── test-7115.xml.result │ │ ├── test-brackets.tsx │ │ ├── test-brackets.tsx.result │ │ ├── test-cssvariables.less │ │ ├── test-cssvariables.less.result │ │ ├── test-cssvariables.scss │ │ ├── test-cssvariables.scss.result │ │ ├── test-function-inv.ts │ │ ├── test-function-inv.ts.result │ │ ├── test-issue11.ts │ │ ├── test-issue11.ts.result │ │ ├── test-issue5431.ts │ │ ├── test-issue5431.ts.result │ │ ├── test-issue5465.ts │ │ ├── test-issue5465.ts.result │ │ ├── test-issue5566.ts │ │ ├── test-issue5566.ts.result │ │ ├── test-keywords.ts │ │ ├── test-keywords.ts.result │ │ ├── test-members.ts │ │ ├── test-members.ts.result │ │ ├── test-object-literals.ts │ │ ├── test-object-literals.ts.result │ │ ├── test-regex.coffee │ │ ├── test-regex.coffee.result │ │ ├── test-strings.ts │ │ ├── test-strings.ts.result │ │ ├── test-this.ts │ │ ├── test-this.ts.result │ │ ├── test-variables.css │ │ ├── test-variables.css.result │ │ ├── test.bat │ │ ├── test.bat.result │ │ ├── test.c │ │ ├── test.c.result │ │ ├── test.cc │ │ ├── test.cc.result │ │ ├── test.clj │ │ ├── test.clj.result │ │ ├── test.coffee │ │ ├── test.coffee.result │ │ ├── test.cpp │ │ ├── test.cpp.result │ │ ├── test.cshtml │ │ ├── test.cshtml.result │ │ ├── test.css │ │ ├── test.css.result │ │ ├── test.diff │ │ ├── test.diff.result │ │ ├── test.fs │ │ ├── test.fs.result │ │ ├── test.go │ │ ├── test.go.result │ │ ├── test.groovy │ │ ├── test.groovy.result │ │ ├── test.handlebars │ │ ├── test.handlebars.result │ │ ├── test.hbs │ │ ├── test.hbs.result │ │ ├── test.html │ │ ├── test.html.result │ │ ├── test.ini │ │ ├── test.ini.result │ │ ├── test.js │ │ ├── test.js.result │ │ ├── test.json │ │ ├── test.json.result │ │ ├── test.jsx │ │ ├── test.jsx.result │ │ ├── test.less │ │ ├── test.less.result │ │ ├── test.lua │ │ ├── test.lua.result │ │ ├── test.m │ │ ├── test.m.result │ │ ├── test.md │ │ ├── test.md.result │ │ ├── test.php │ │ ├── test.php.result │ │ ├── test.pl │ │ ├── test.pl.result │ │ ├── test.ps1 │ │ ├── test.ps1.result │ │ ├── test.py │ │ ├── test.py.result │ │ ├── test.r │ │ ├── test.r.result │ │ ├── test.rb │ │ ├── test.rb.result │ │ ├── test.rs │ │ ├── test.rs.result │ │ ├── test.scss │ │ ├── test.scss.result │ │ ├── test.sh │ │ ├── test.sh.result │ │ ├── test.shader │ │ ├── test.shader.result │ │ ├── test.sql │ │ ├── test.sql.result │ │ ├── test.swift │ │ ├── test.swift.result │ │ ├── test.ts │ │ ├── test.ts.result │ │ ├── test.vb │ │ ├── test.vb.result │ │ ├── test.xml │ │ ├── test.xml.result │ │ ├── test.yaml │ │ ├── test.yaml.result │ │ ├── test2.pl │ │ ├── test2.pl.result │ │ ├── test6916.js │ │ ├── test6916.js.result │ │ ├── tsconfig.json │ │ └── tsconfig.json.result │ │ └── tsconfig.json │ ├── tests-c │ ├── c.tmLanguage.json │ ├── main.cpp │ └── meson.build │ ├── tests │ ├── cases │ │ ├── README.md │ │ ├── app_development.scss │ │ ├── test.c │ │ ├── test.cpp │ │ ├── test.xml │ │ └── tinywl.c │ ├── main.cpp │ ├── meson.build │ └── results │ │ ├── parsed │ │ ├── c-plus-plus.json │ │ ├── c.json │ │ ├── coffee-script.jsonsql.json │ │ ├── hello.json │ │ ├── html.json │ │ ├── javascript.json │ │ ├── json.json │ │ ├── ruby.json │ │ ├── scss.json │ │ ├── sql.json │ │ └── text.json │ │ └── read │ │ ├── c-plus-plus.json │ │ ├── c.json │ │ ├── coffee-script.jsonsql.json │ │ ├── hello.json │ │ ├── html.json │ │ ├── javascript.json │ │ ├── json.json │ │ ├── ruby.json │ │ ├── scss.json │ │ ├── sql.json │ │ └── text.json │ └── textmate │ ├── extensions │ ├── extension.cpp │ ├── extension.h │ ├── main.cpp │ ├── meson.build │ ├── tinyxml2.cpp │ ├── tinyxml2.h │ ├── utf8.cpp │ ├── utf8.h │ ├── util.cpp │ └── util.h │ ├── meson.build │ ├── parser │ ├── defines.h │ ├── grammar.cpp │ ├── grammar.h │ ├── main.cpp │ ├── meson.build │ ├── parse.h │ ├── parser.cpp │ ├── pattern.cpp │ ├── pattern.h │ ├── private.h │ ├── reader.cpp │ └── reader.h │ ├── resources │ ├── grammars.cpp │ ├── grammars.h │ ├── themes.cpp │ └── themes.h │ ├── scopes │ ├── main.cpp │ ├── match.cpp │ ├── meson.build │ ├── parse.cpp │ ├── scope.cpp │ ├── scope.h │ ├── scopes_parse.h │ ├── types.cpp │ └── types.h │ ├── textmate.cpp │ ├── textmate.h │ └── theme │ ├── colors.h │ ├── main.cpp │ ├── meson.build │ ├── rgb.h │ ├── stringop.cpp │ ├── stringop.h │ ├── theme.cpp │ ├── theme.h │ ├── util.cpp │ └── util.h ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── libs ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── Screenshot from 2022-03-09 18-11-43.png ├── Screenshot from 2022-03-30 10-04-44.png ├── Screenshot from 2022-04-01 22-21-35.png ├── Screenshot from 2022-04-05 10-47-24.png ├── Screenshot from 2022-04-10 21-03-06.png ├── Screenshot from 2022-04-15 16-43-54.png ├── Screenshot from 2022-04-24 08-34-12.png └── Screenshot from 2022-04-26 09-01-38.png ├── test ├── diff_test.dart ├── doc_test.dart ├── editor_test.dart ├── explorer_test.dart ├── indexer_test.dart ├── levenshtein_test.dart └── widget_test.dart └── tests ├── cpp.json ├── empty.c ├── extensions ├── cpp │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ ├── c.code-snippets │ │ └── cpp.code-snippets │ └── syntaxes │ │ ├── c.tmLanguage.json │ │ ├── cpp.embedded.macro.tmLanguage.json │ │ ├── cpp.tmLanguage.json │ │ └── platform.tmLanguage.json ├── theme-monokai-dimmed │ ├── package.json │ ├── package.nls.json │ └── themes │ │ └── dimmed-monokai-color-theme.json └── theme-monokai │ ├── package.json │ ├── package.nls.json │ └── themes │ └── monokai-color-theme.json ├── includes.md ├── main.c ├── main.cpp ├── main.js ├── sqlite3.c └── tinywl.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/.gitmodules -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/TODO.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/assets/config.default.json -------------------------------------------------------------------------------- /assets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/assets/config.json -------------------------------------------------------------------------------- /assets/extensions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/assets/extensions.zip -------------------------------------------------------------------------------- /desktop/ashlar.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/desktop/ashlar.desktop -------------------------------------------------------------------------------- /editor: -------------------------------------------------------------------------------- 1 | ./build/linux/x64/release/bundle/editor_from_scratch -------------------------------------------------------------------------------- /fonts/DejaVu Sans Mono for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/fonts/DejaVu Sans Mono for Powerline.ttf -------------------------------------------------------------------------------- /fonts/FiraCode-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/fonts/FiraCode-Regular.ttf -------------------------------------------------------------------------------- /fonts/Source Code Pro for Powerline.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/fonts/Source Code Pro for Powerline.otf -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/common.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/configure.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/editor/block.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/block.dart -------------------------------------------------------------------------------- /lib/editor/controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/controller.dart -------------------------------------------------------------------------------- /lib/editor/cursor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/cursor.dart -------------------------------------------------------------------------------- /lib/editor/decorations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/decorations.dart -------------------------------------------------------------------------------- /lib/editor/document.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/document.dart -------------------------------------------------------------------------------- /lib/editor/editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/editor.dart -------------------------------------------------------------------------------- /lib/editor/history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/history.dart -------------------------------------------------------------------------------- /lib/editor/minimap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/minimap.dart -------------------------------------------------------------------------------- /lib/editor/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/search.dart -------------------------------------------------------------------------------- /lib/editor/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/editor/view.dart -------------------------------------------------------------------------------- /lib/layout/explorer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/layout/explorer.dart -------------------------------------------------------------------------------- /lib/layout/layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/layout/layout.dart -------------------------------------------------------------------------------- /lib/layout/statusbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/layout/statusbar.dart -------------------------------------------------------------------------------- /lib/layout/tabs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/layout/tabs.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/services.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/services/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/app.dart -------------------------------------------------------------------------------- /lib/services/explorer/filesystem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/explorer/filesystem.dart -------------------------------------------------------------------------------- /lib/services/explorer/googledrive.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/services/explorer/localfs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/explorer/localfs.dart -------------------------------------------------------------------------------- /lib/services/explorer/sftp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/explorer/sftp.dart -------------------------------------------------------------------------------- /lib/services/ffi/bridge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/ffi/bridge.dart -------------------------------------------------------------------------------- /lib/services/ffi/highlighter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/ffi/highlighter.dart -------------------------------------------------------------------------------- /lib/services/highlight/fhl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/highlight/fhl.dart -------------------------------------------------------------------------------- /lib/services/highlight/highlighter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/highlight/highlighter.dart -------------------------------------------------------------------------------- /lib/services/highlight/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/highlight/theme.dart -------------------------------------------------------------------------------- /lib/services/highlight/tmparser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/highlight/tmparser.dart -------------------------------------------------------------------------------- /lib/services/indexer/filesearch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/indexer/filesearch.dart -------------------------------------------------------------------------------- /lib/services/indexer/indexer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/indexer/indexer.dart -------------------------------------------------------------------------------- /lib/services/indexer/levenshtein.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/indexer/levenshtein.dart -------------------------------------------------------------------------------- /lib/services/input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/input.dart -------------------------------------------------------------------------------- /lib/services/keybindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/keybindings.dart -------------------------------------------------------------------------------- /lib/services/timer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/timer.dart -------------------------------------------------------------------------------- /lib/services/ui/menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/ui/menu.dart -------------------------------------------------------------------------------- /lib/services/ui/modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/ui/modal.dart -------------------------------------------------------------------------------- /lib/services/ui/palette.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/ui/palette.dart -------------------------------------------------------------------------------- /lib/services/ui/status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/ui/status.dart -------------------------------------------------------------------------------- /lib/services/ui/ui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/ui/ui.dart -------------------------------------------------------------------------------- /lib/services/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/lib/services/util.dart -------------------------------------------------------------------------------- /lib/widgets.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/widgets/editor.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/widgets/explorer.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/widgets/minimap.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/CMakeLists.txt -------------------------------------------------------------------------------- /libs/Onigmo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/.editorconfig -------------------------------------------------------------------------------- /libs/Onigmo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/.gitignore -------------------------------------------------------------------------------- /libs/Onigmo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/.travis.yml -------------------------------------------------------------------------------- /libs/Onigmo/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/AUTHORS -------------------------------------------------------------------------------- /libs/Onigmo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/COPYING -------------------------------------------------------------------------------- /libs/Onigmo/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/HISTORY -------------------------------------------------------------------------------- /libs/Onigmo/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/INSTALL -------------------------------------------------------------------------------- /libs/Onigmo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/Makefile.am -------------------------------------------------------------------------------- /libs/Onigmo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/README -------------------------------------------------------------------------------- /libs/Onigmo/README.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/README.ja -------------------------------------------------------------------------------- /libs/Onigmo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/README.md -------------------------------------------------------------------------------- /libs/Onigmo/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/appveyor.yml -------------------------------------------------------------------------------- /libs/Onigmo/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf -vfi 4 | -------------------------------------------------------------------------------- /libs/Onigmo/build_nmake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/build_nmake.cmd -------------------------------------------------------------------------------- /libs/Onigmo/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/configure.ac -------------------------------------------------------------------------------- /libs/Onigmo/doc/API: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/doc/API -------------------------------------------------------------------------------- /libs/Onigmo/doc/API.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/doc/API.ja -------------------------------------------------------------------------------- /libs/Onigmo/doc/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/doc/FAQ -------------------------------------------------------------------------------- /libs/Onigmo/doc/FAQ.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/doc/FAQ.ja -------------------------------------------------------------------------------- /libs/Onigmo/doc/RE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/doc/RE -------------------------------------------------------------------------------- /libs/Onigmo/doc/RE.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/doc/RE.ja -------------------------------------------------------------------------------- /libs/Onigmo/doc/UnicodeProps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/doc/UnicodeProps.txt -------------------------------------------------------------------------------- /libs/Onigmo/enc/ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/ascii.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/big5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/big5.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/cp949.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/cp949.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/emacs_mule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/emacs_mule.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/euc_jp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/euc_jp.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/euc_kr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/euc_kr.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/euc_tw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/euc_tw.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/gb18030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/gb18030.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/gb2312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/gb2312.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/gbk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/gbk.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859.h: -------------------------------------------------------------------------------- 1 | #define SHARP_s 0xdf 2 | -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_1.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_10.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_11.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_13.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_14.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_15.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_16.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_2.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_3.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_4.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_5.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_6.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_7.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_8.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/iso_8859_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/iso_8859_9.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/jis/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/jis/props.h -------------------------------------------------------------------------------- /libs/Onigmo/enc/jis/props.kwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/jis/props.kwd -------------------------------------------------------------------------------- /libs/Onigmo/enc/koi8_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/koi8_r.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/koi8_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/koi8_u.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/mktable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/mktable.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/shift_jis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/shift_jis.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/shift_jis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/shift_jis.h -------------------------------------------------------------------------------- /libs/Onigmo/enc/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/unicode.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/unicode/casefold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/unicode/casefold.h -------------------------------------------------------------------------------- /libs/Onigmo/enc/unicode/name2ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/unicode/name2ctype.h -------------------------------------------------------------------------------- /libs/Onigmo/enc/us_ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/us_ascii.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/utf_16be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/utf_16be.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/utf_16le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/utf_16le.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/utf_32be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/utf_32be.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/utf_32le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/utf_32le.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/utf_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/utf_8.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/windows_1250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/windows_1250.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/windows_1251.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/windows_1251.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/windows_1252.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/windows_1252.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/windows_1253.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/windows_1253.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/windows_1254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/windows_1254.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/windows_1257.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/windows_1257.c -------------------------------------------------------------------------------- /libs/Onigmo/enc/windows_31j.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/enc/windows_31j.c -------------------------------------------------------------------------------- /libs/Onigmo/onigmo-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/onigmo-config.in -------------------------------------------------------------------------------- /libs/Onigmo/onigmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/onigmo.h -------------------------------------------------------------------------------- /libs/Onigmo/onigmo.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/onigmo.pc.in -------------------------------------------------------------------------------- /libs/Onigmo/onigmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/onigmo.py -------------------------------------------------------------------------------- /libs/Onigmo/onigmognu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/onigmognu.h -------------------------------------------------------------------------------- /libs/Onigmo/onigmoposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/onigmoposix.h -------------------------------------------------------------------------------- /libs/Onigmo/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regcomp.c -------------------------------------------------------------------------------- /libs/Onigmo/regenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regenc.c -------------------------------------------------------------------------------- /libs/Onigmo/regenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regenc.h -------------------------------------------------------------------------------- /libs/Onigmo/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regerror.c -------------------------------------------------------------------------------- /libs/Onigmo/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regexec.c -------------------------------------------------------------------------------- /libs/Onigmo/regext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regext.c -------------------------------------------------------------------------------- /libs/Onigmo/reggnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/reggnu.c -------------------------------------------------------------------------------- /libs/Onigmo/regint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regint.h -------------------------------------------------------------------------------- /libs/Onigmo/regparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regparse.c -------------------------------------------------------------------------------- /libs/Onigmo/regparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regparse.h -------------------------------------------------------------------------------- /libs/Onigmo/regposerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regposerr.c -------------------------------------------------------------------------------- /libs/Onigmo/regposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regposix.c -------------------------------------------------------------------------------- /libs/Onigmo/regsyntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regsyntax.c -------------------------------------------------------------------------------- /libs/Onigmo/regtrav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regtrav.c -------------------------------------------------------------------------------- /libs/Onigmo/regversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/regversion.c -------------------------------------------------------------------------------- /libs/Onigmo/sample/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/Makefile.am -------------------------------------------------------------------------------- /libs/Onigmo/sample/crnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/crnl.c -------------------------------------------------------------------------------- /libs/Onigmo/sample/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/encode.c -------------------------------------------------------------------------------- /libs/Onigmo/sample/listcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/listcap.c -------------------------------------------------------------------------------- /libs/Onigmo/sample/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/names.c -------------------------------------------------------------------------------- /libs/Onigmo/sample/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/posix.c -------------------------------------------------------------------------------- /libs/Onigmo/sample/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/scan.c -------------------------------------------------------------------------------- /libs/Onigmo/sample/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/simple.c -------------------------------------------------------------------------------- /libs/Onigmo/sample/sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/sql.c -------------------------------------------------------------------------------- /libs/Onigmo/sample/syntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/sample/syntax.c -------------------------------------------------------------------------------- /libs/Onigmo/st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/st.c -------------------------------------------------------------------------------- /libs/Onigmo/st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/st.h -------------------------------------------------------------------------------- /libs/Onigmo/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/test.rb -------------------------------------------------------------------------------- /libs/Onigmo/test_enc_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/test_enc_utf8.c -------------------------------------------------------------------------------- /libs/Onigmo/testc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/testc.c -------------------------------------------------------------------------------- /libs/Onigmo/testconv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/testconv.rb -------------------------------------------------------------------------------- /libs/Onigmo/testconvu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/testconvu.rb -------------------------------------------------------------------------------- /libs/Onigmo/testpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/testpy.py -------------------------------------------------------------------------------- /libs/Onigmo/testu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/testu.c -------------------------------------------------------------------------------- /libs/Onigmo/tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/tool/.gitignore -------------------------------------------------------------------------------- /libs/Onigmo/tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/tool/Makefile -------------------------------------------------------------------------------- /libs/Onigmo/tool/case-folding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/tool/case-folding.rb -------------------------------------------------------------------------------- /libs/Onigmo/tool/convert-jis-props.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/tool/convert-jis-props.sh -------------------------------------------------------------------------------- /libs/Onigmo/tool/download-ucd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/tool/download-ucd.sh -------------------------------------------------------------------------------- /libs/Onigmo/tool/enc-unicode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/tool/enc-unicode.rb -------------------------------------------------------------------------------- /libs/Onigmo/tool/update-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/tool/update-doc.py -------------------------------------------------------------------------------- /libs/Onigmo/win32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/win32/Makefile -------------------------------------------------------------------------------- /libs/Onigmo/win32/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/win32/Makefile.mingw -------------------------------------------------------------------------------- /libs/Onigmo/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/win32/config.h -------------------------------------------------------------------------------- /libs/Onigmo/win32/makedef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/win32/makedef.py -------------------------------------------------------------------------------- /libs/Onigmo/win32/onigmo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/win32/onigmo.rc -------------------------------------------------------------------------------- /libs/Onigmo/win32/testc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/Onigmo/win32/testc.c -------------------------------------------------------------------------------- /libs/highlighter.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/highlighter.def -------------------------------------------------------------------------------- /libs/highlighter/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/highlighter/api.cpp -------------------------------------------------------------------------------- /libs/highlighter/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/highlighter/api.h -------------------------------------------------------------------------------- /libs/highlighter/git.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/highlighter/git.cpp -------------------------------------------------------------------------------- /libs/highlighter/git/git_diff.inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/highlighter/git/git_diff.inc.cpp -------------------------------------------------------------------------------- /libs/highlighter/git/git_status.inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/highlighter/git/git_status.inc.cpp -------------------------------------------------------------------------------- /libs/highlighter/highlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/highlighter/highlighter.cpp -------------------------------------------------------------------------------- /libs/highlighter/ssh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/highlighter/ssh.cpp -------------------------------------------------------------------------------- /libs/highlighter/treesitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/highlighter/treesitter.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.clang-format -------------------------------------------------------------------------------- /libs/jsoncpp/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.clang-tidy -------------------------------------------------------------------------------- /libs/jsoncpp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.gitattributes -------------------------------------------------------------------------------- /libs/jsoncpp/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /libs/jsoncpp/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /libs/jsoncpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.gitignore -------------------------------------------------------------------------------- /libs/jsoncpp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.travis.yml -------------------------------------------------------------------------------- /libs/jsoncpp/.travis_scripts/cmake_builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.travis_scripts/cmake_builder.sh -------------------------------------------------------------------------------- /libs/jsoncpp/.travis_scripts/meson_builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.travis_scripts/meson_builder.sh -------------------------------------------------------------------------------- /libs/jsoncpp/.travis_scripts/run-clang-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.travis_scripts/run-clang-format.py -------------------------------------------------------------------------------- /libs/jsoncpp/.travis_scripts/run-clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.travis_scripts/run-clang-format.sh -------------------------------------------------------------------------------- /libs/jsoncpp/.travis_scripts/travis.before_install.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.travis_scripts/travis.before_install.linux.sh -------------------------------------------------------------------------------- /libs/jsoncpp/.travis_scripts/travis.before_install.osx.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/jsoncpp/.travis_scripts/travis.install.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/.travis_scripts/travis.install.linux.sh -------------------------------------------------------------------------------- /libs/jsoncpp/.travis_scripts/travis.install.osx.sh: -------------------------------------------------------------------------------- 1 | # NOTHING TO DO HERE 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/AUTHORS -------------------------------------------------------------------------------- /libs/jsoncpp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/BUILD.bazel -------------------------------------------------------------------------------- /libs/jsoncpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/CMakeLists.txt -------------------------------------------------------------------------------- /libs/jsoncpp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/CONTRIBUTING.md -------------------------------------------------------------------------------- /libs/jsoncpp/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/CTestConfig.cmake -------------------------------------------------------------------------------- /libs/jsoncpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/LICENSE -------------------------------------------------------------------------------- /libs/jsoncpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/README.md -------------------------------------------------------------------------------- /libs/jsoncpp/amalgamate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/amalgamate.py -------------------------------------------------------------------------------- /libs/jsoncpp/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/appveyor.yml -------------------------------------------------------------------------------- /libs/jsoncpp/cmake/JoinPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/cmake/JoinPaths.cmake -------------------------------------------------------------------------------- /libs/jsoncpp/dev.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/dev.makefile -------------------------------------------------------------------------------- /libs/jsoncpp/devtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/devtools/__init__.py -------------------------------------------------------------------------------- /libs/jsoncpp/devtools/agent_vmw7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/devtools/agent_vmw7.json -------------------------------------------------------------------------------- /libs/jsoncpp/devtools/agent_vmxp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/devtools/agent_vmxp.json -------------------------------------------------------------------------------- /libs/jsoncpp/devtools/antglob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/devtools/antglob.py -------------------------------------------------------------------------------- /libs/jsoncpp/devtools/batchbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/devtools/batchbuild.py -------------------------------------------------------------------------------- /libs/jsoncpp/devtools/fixeol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/devtools/fixeol.py -------------------------------------------------------------------------------- /libs/jsoncpp/devtools/licenseupdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/devtools/licenseupdater.py -------------------------------------------------------------------------------- /libs/jsoncpp/devtools/tarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/devtools/tarball.py -------------------------------------------------------------------------------- /libs/jsoncpp/doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/doc/doxyfile.in -------------------------------------------------------------------------------- /libs/jsoncpp/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/doc/footer.html -------------------------------------------------------------------------------- /libs/jsoncpp/doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/doc/header.html -------------------------------------------------------------------------------- /libs/jsoncpp/doc/jsoncpp.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/doc/jsoncpp.dox -------------------------------------------------------------------------------- /libs/jsoncpp/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/doc/readme.txt -------------------------------------------------------------------------------- /libs/jsoncpp/doc/roadmap.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/doc/roadmap.dox -------------------------------------------------------------------------------- /libs/jsoncpp/doc/web_doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/doc/web_doxyfile.in -------------------------------------------------------------------------------- /libs/jsoncpp/doxybuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/doxybuild.py -------------------------------------------------------------------------------- /libs/jsoncpp/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/example/CMakeLists.txt -------------------------------------------------------------------------------- /libs/jsoncpp/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/example/README.md -------------------------------------------------------------------------------- /libs/jsoncpp/example/readFromStream/errorFormat.json: -------------------------------------------------------------------------------- 1 | { 2 | 1: "value" 3 | } -------------------------------------------------------------------------------- /libs/jsoncpp/example/readFromStream/readFromStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/example/readFromStream/readFromStream.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/example/readFromStream/withComment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/example/readFromStream/withComment.json -------------------------------------------------------------------------------- /libs/jsoncpp/example/readFromString/readFromString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/example/readFromString/readFromString.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/example/streamWrite/streamWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/example/streamWrite/streamWrite.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/example/stringWrite/stringWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/example/stringWrite/stringWrite.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/get_version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/get_version.pl -------------------------------------------------------------------------------- /libs/jsoncpp/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/CMakeLists.txt -------------------------------------------------------------------------------- /libs/jsoncpp/include/PreventInBuildInstalls.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/PreventInBuildInstalls.cmake -------------------------------------------------------------------------------- /libs/jsoncpp/include/PreventInSourceBuilds.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/PreventInSourceBuilds.cmake -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/allocator.h -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/assertions.h -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/config.h -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/forwards.h -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/json.h -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/json_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/json_features.h -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/reader.h -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/value.h -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/version.h -------------------------------------------------------------------------------- /libs/jsoncpp/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/include/json/writer.h -------------------------------------------------------------------------------- /libs/jsoncpp/jsoncpp-namespaced-targets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/jsoncpp-namespaced-targets.cmake -------------------------------------------------------------------------------- /libs/jsoncpp/jsoncppConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/jsoncppConfig.cmake.in -------------------------------------------------------------------------------- /libs/jsoncpp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/meson.build -------------------------------------------------------------------------------- /libs/jsoncpp/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/meson_options.txt -------------------------------------------------------------------------------- /libs/jsoncpp/pkg-config/jsoncpp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/pkg-config/jsoncpp.pc.in -------------------------------------------------------------------------------- /libs/jsoncpp/reformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/reformat.sh -------------------------------------------------------------------------------- /libs/jsoncpp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/CMakeLists.txt -------------------------------------------------------------------------------- /libs/jsoncpp/src/jsontestrunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/jsontestrunner/CMakeLists.txt -------------------------------------------------------------------------------- /libs/jsoncpp/src/jsontestrunner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/jsontestrunner/main.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/src/lib_json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/lib_json/CMakeLists.txt -------------------------------------------------------------------------------- /libs/jsoncpp/src/lib_json/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/lib_json/json_reader.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/src/lib_json/json_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/lib_json/json_tool.h -------------------------------------------------------------------------------- /libs/jsoncpp/src/lib_json/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/lib_json/json_value.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/src/lib_json/json_valueiterator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/lib_json/json_valueiterator.inl -------------------------------------------------------------------------------- /libs/jsoncpp/src/lib_json/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/lib_json/json_writer.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/src/test_lib_json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/test_lib_json/CMakeLists.txt -------------------------------------------------------------------------------- /libs/jsoncpp/src/test_lib_json/fuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/test_lib_json/fuzz.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/src/test_lib_json/fuzz.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/test_lib_json/fuzz.dict -------------------------------------------------------------------------------- /libs/jsoncpp/src/test_lib_json/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/test_lib_json/fuzz.h -------------------------------------------------------------------------------- /libs/jsoncpp/src/test_lib_json/jsontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/test_lib_json/jsontest.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/src/test_lib_json/jsontest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/test_lib_json/jsontest.h -------------------------------------------------------------------------------- /libs/jsoncpp/src/test_lib_json/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/src/test_lib_json/main.cpp -------------------------------------------------------------------------------- /libs/jsoncpp/test/cleantests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/cleantests.py -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/fail_invalid_quote.json: -------------------------------------------------------------------------------- 1 | {'//this is bad JSON.'} -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/fail_test_array_01.json: -------------------------------------------------------------------------------- 1 | [ 1 2 3] 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/fail_test_array_02.json: -------------------------------------------------------------------------------- 1 | [1,,] 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/fail_test_object_01.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234,, } 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/fail_test_stack_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/fail_test_stack_limit.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_01.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_01.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_02.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_02.json: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_03.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_array_03.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_03.json: -------------------------------------------------------------------------------- 1 | [ 1, 2 , 3,4,5] 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_04.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_array_04.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_04.json: -------------------------------------------------------------------------------- 1 | [1, "abc" , 12.3, -4] 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_05.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_array_05.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_array_05.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_06.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_array_06.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_array_06.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_07.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_array_07.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_array_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_array_07.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_01.expected: -------------------------------------------------------------------------------- 1 | .=123456789 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_01.json: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_02.expected: -------------------------------------------------------------------------------- 1 | .=-123456789 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_02.json: -------------------------------------------------------------------------------- 1 | -0123456789 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_03.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_03.json: -------------------------------------------------------------------------------- 1 | 1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_04.expected: -------------------------------------------------------------------------------- 1 | .="abcdef" 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_04.json: -------------------------------------------------------------------------------- 1 | "abcdef" 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_05.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_05.json: -------------------------------------------------------------------------------- 1 | null 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_06.expected: -------------------------------------------------------------------------------- 1 | .=true 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_06.json: -------------------------------------------------------------------------------- 1 | true 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_07.expected: -------------------------------------------------------------------------------- 1 | .=false 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_07.json: -------------------------------------------------------------------------------- 1 | false 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_08.expected: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | .=null 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_08.json: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | null 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_09.expected: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | .=null 4 | 5 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_basic_09.json: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | null 4 | 5 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_comment_00.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_comment_00.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_comment_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_comment_00.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_comment_01.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_comment_01.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_comment_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_comment_01.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_comment_02.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_comment_02.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_comment_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_comment_02.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_complex_01.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_complex_01.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_complex_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_complex_01.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_01.expected: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | .=2147483647 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_01.json: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | 2147483647 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_02.expected: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | .=-2147483648 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_02.json: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | -2147483648 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_03.expected: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | .=4294967295 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_03.json: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | 4294967295 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_04.expected: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | .=0 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_04.json: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | 0 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_05.expected: -------------------------------------------------------------------------------- 1 | .=1 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_05.json: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_06_64bits.expected: -------------------------------------------------------------------------------- 1 | .=9223372036854775808 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_06_64bits.json: -------------------------------------------------------------------------------- 1 | 9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_07_64bits.expected: -------------------------------------------------------------------------------- 1 | .=-9223372036854775808 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_07_64bits.json: -------------------------------------------------------------------------------- 1 | -9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_08_64bits.expected: -------------------------------------------------------------------------------- 1 | .=18446744073709551615 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_integer_08_64bits.json: -------------------------------------------------------------------------------- 1 | 18446744073709551615 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_large_01.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_large_01.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_large_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_large_01.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_object_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_object_01.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_object_02.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_object_02.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234 } 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_object_03.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .attribute="random" 3 | .count=1234 4 | .name="test" 5 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_object_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_object_03.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_object_04.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .=1234 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_object_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "" : 1234 3 | } 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_preserve_comment_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_preserve_comment_01.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_01.expected: -------------------------------------------------------------------------------- 1 | // 2^33 => out of integer range, switch to double 2 | .=8589934592 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_01.json: -------------------------------------------------------------------------------- 1 | // 2^33 => out of integer range, switch to double 2 | 8589934592 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_02.expected: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | .=-4294967295 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_02.json: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | -4294967295 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_03.expected: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | .=-4294967295 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_03.json: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | -4294967295 3 | 4 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_04.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_04.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_04.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_05.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_05.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_05.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_06.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_06.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_06.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_07.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_07.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_07.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_08.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_08.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_08.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_09.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_09.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_09.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_10.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_10.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_10.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_11.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_11.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_real_11.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_12.expected: -------------------------------------------------------------------------------- 1 | // 2^64 -> switch to double. 2 | .=1.844674407370955e+19 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_real_12.json: -------------------------------------------------------------------------------- 1 | // 2^64 -> switch to double. 2 | 18446744073709551616 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_01.expected: -------------------------------------------------------------------------------- 1 | .="!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~" -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_01.json: -------------------------------------------------------------------------------- 1 | "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_02.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_string_02.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_string_02.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_03.expected: -------------------------------------------------------------------------------- 1 | .="http://jsoncpp.sourceforge.net/" -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_03.json: -------------------------------------------------------------------------------- 1 | "http:\/\/jsoncpp.sourceforge.net\/" 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_04.expected: -------------------------------------------------------------------------------- 1 | .=""abc\def"" 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_04.json: -------------------------------------------------------------------------------- 1 | "\"abc\\def\"" 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_05.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_string_05.expected -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/data/legacy_test_string_05.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_01.expected: -------------------------------------------------------------------------------- 1 | .="a" 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_01.json: -------------------------------------------------------------------------------- 1 | "\u0061" -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_02.expected: -------------------------------------------------------------------------------- 1 | .="¢" 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_02.json: -------------------------------------------------------------------------------- 1 | "\u00A2" -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_03.expected: -------------------------------------------------------------------------------- 1 | .="€" 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_03.json: -------------------------------------------------------------------------------- 1 | "\u20AC" -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_04.expected: -------------------------------------------------------------------------------- 1 | .="𝄞" 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_04.json: -------------------------------------------------------------------------------- 1 | "\uD834\uDD1E" -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_05.expected: -------------------------------------------------------------------------------- 1 | .="Zażółć gęślą jaźń" 2 | 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/legacy_test_string_unicode_05.json: -------------------------------------------------------------------------------- 1 | "Zażółć gęślą jaźń" -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/test_array_08.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/test_array_08.json: -------------------------------------------------------------------------------- 1 | [1,] 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/test_object_05.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/data/test_object_05.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234, } 2 | -------------------------------------------------------------------------------- /libs/jsoncpp/test/generate_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/generate_expected.py -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/jsonchecker/fail10.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/jsonchecker/fail18.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/jsonchecker/fail26.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/jsonchecker/fail3.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/pass1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/jsonchecker/pass1.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/pass2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/jsonchecker/pass2.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/pass3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/jsonchecker/pass3.json -------------------------------------------------------------------------------- /libs/jsoncpp/test/jsonchecker/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/jsonchecker/readme.txt -------------------------------------------------------------------------------- /libs/jsoncpp/test/pyjsontestrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/pyjsontestrunner.py -------------------------------------------------------------------------------- /libs/jsoncpp/test/runjsontests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/runjsontests.py -------------------------------------------------------------------------------- /libs/jsoncpp/test/rununittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/jsoncpp/test/rununittests.py -------------------------------------------------------------------------------- /libs/jsoncpp/version.in: -------------------------------------------------------------------------------- 1 | @JSONCPP_VERSION@ 2 | -------------------------------------------------------------------------------- /libs/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /libs/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /libs/tm-parser/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/.clang-format -------------------------------------------------------------------------------- /libs/tm-parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/.gitignore -------------------------------------------------------------------------------- /libs/tm-parser/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/tm-parser/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/meson.build -------------------------------------------------------------------------------- /libs/tm-parser/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/out.txt -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/README.md -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/c.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/css.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/forever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/forever.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/hello.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/html-erb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/html-erb.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/html.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/hyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/hyperlink.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/imaginary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/imaginary.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/java.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/json.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/latex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/latex.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/loops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/loops.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/makefile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/makefile.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/php.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/python.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/ruby.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/scss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/scss.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/sql.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/text.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/thrift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/thrift.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/fixtures/todo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/fixtures/todo.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/first-mate/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/first-mate/tests.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/onigtests/fixtures/test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/onigtests/fixtures/test.cs -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/66.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/66.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/Jade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/Jade.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/Jade.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/Jade.tmLanguage -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/Jade22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/Jade22.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/Makefile.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/Makefile.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/Perl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/Perl.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/Pug.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/Pug.tmLanguage -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/Ruby.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/Ruby.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/YAML.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/YAML.tmLanguage -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/aspvbnet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/aspvbnet.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/groovy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/groovy.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/html.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/html2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/html2.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/javascript.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/markdown.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/markdown.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/php.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/php.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/fixtures/whileLang.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/fixtures/whileLang.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/tests.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/suite1/whileTests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/suite1/whileTests.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/*.diff.html 2 | -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/Abyss.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/Abyss.tmTheme -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/Kimbie_dark.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/Kimbie_dark.tmTheme -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/Monokai.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/Monokai.tmTheme -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/QuietLight.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/QuietLight.tmTheme -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/Solarized-dark.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/Solarized-dark.tmTheme -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/Solarized-light.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/Solarized-light.tmTheme -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/bluloco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/bluloco.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/dark_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/dark_plus.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/dark_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/dark_vs.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/dimmed-monokai.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/dimmed-monokai.tmTheme -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/dracula.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/dracula.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/go/colorize-fixtures/test-13777.go: -------------------------------------------------------------------------------- 1 | var e [][]*aType // ( bug in highligher?) -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/go/go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/go/go.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/grammars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/grammars.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/hc_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/hc_black.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/languages.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/light_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/light_plus.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/light_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/light_vs.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/monokai-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/monokai-color-theme.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/red.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/red.tmTheme -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/ASPVBnet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/ASPVBnet.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/Handlebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/Handlebars.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/JSON.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/JSON.tmLanguage -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/Jade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/Jade.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/Makefile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/Makefile.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/Perl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/Perl.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/R.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/R.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/Ruby.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/Ruby.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/SQL.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/SQL.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/c++.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/c++.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/c.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/cshtml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/cshtml.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/css.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/css.plist -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/diff.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/diff.tmLanguage -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/fsharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/fsharp.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/go.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/html.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/java.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/lua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/lua.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/php.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/rust.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/scss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/scss.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/shaderlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/shaderlab.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/swift.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/xml.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/xsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/xsl.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/syntaxes/yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/syntaxes/yaml.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/12750.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/12750.html -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/12750.html.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/12750.html.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/13448.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/13448.html -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/13448.html.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/13448.html.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/14119.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/14119.less -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/14119.less.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/14119.less.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/COMMIT_EDITMSG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/COMMIT_EDITMSG -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/Dockerfile -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/Dockerfile.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/Dockerfile.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/basic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/basic.java -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/basic.java.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/basic.java.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/git-rebase-todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/git-rebase-todo -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/issue-1550.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/issue-1550.yaml -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/issue-4008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/issue-4008.yaml -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/issue-6303.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/issue-6303.yaml -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/makefile -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/makefile.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/makefile.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-13777.go: -------------------------------------------------------------------------------- 1 | var e [][]*aType // ( bug in highligher?) -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-4287.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-4287.jade -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-6611.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-6611.rs -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-7115.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-7115.xml -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-brackets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-brackets.tsx -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-function-inv.ts: -------------------------------------------------------------------------------- 1 | rowData.push(callback(new Cell(row, col, false))); -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-issue11.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-issue11.ts -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-issue5431.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-issue5431.ts -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-issue5465.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-issue5465.ts -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-issue5566.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-issue5566.ts -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-keywords.ts: -------------------------------------------------------------------------------- 1 | export var foo = () => new RegExp(''); 2 | -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-members.ts -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-regex.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-regex.coffee -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-strings.ts -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-this.ts: -------------------------------------------------------------------------------- 1 | { 2 | this.foo = 9; 3 | } -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test-variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test-variables.css -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.bat -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.bat.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.bat.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.c -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.c.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.c.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.cc -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.cc.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.cc.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.clj -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.clj.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.clj.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.coffee -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.coffee.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.coffee.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.cpp -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.cpp.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.cpp.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.cshtml -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.cshtml.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.cshtml.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.css -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.css.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.css.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.diff -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.diff.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.diff.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.fs -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.fs.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.fs.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.go -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.go.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.go.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.groovy -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.groovy.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.groovy.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.handlebars -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.hbs -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.hbs.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.hbs.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.html -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.html.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.html.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.ini -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.ini.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.ini.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.js -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.js.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.js.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.json -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.json.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.json.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.jsx -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.jsx.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.jsx.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.less -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.less.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.less.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.lua -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.lua.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.lua.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.m -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.m.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.m.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.md -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.md.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.md.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.php -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.php.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.php.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.pl -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.pl.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.pl.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.ps1 -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.ps1.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.ps1.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.py -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.py.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.py.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.r -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.r.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.r.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.rb -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.rb.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.rb.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.rs -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.rs.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.rs.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.scss -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.scss.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.scss.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.sh -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.sh.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.sh.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.shader -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.shader.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.shader.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.sql -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.sql.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.sql.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.swift -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.swift.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.swift.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.ts -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.ts.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.ts.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.vb -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.vb.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.vb.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.xml -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.xml.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.xml.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.yaml -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test.yaml.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test.yaml.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test2.pl -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test2.pl.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test2.pl.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test6916.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test6916.js -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/test6916.js.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tests/test6916.js.result -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tests/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6" 4 | } 5 | } -------------------------------------------------------------------------------- /libs/tm-parser/test-cases/themes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/test-cases/themes/tsconfig.json -------------------------------------------------------------------------------- /libs/tm-parser/tests-c/c.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests-c/c.tmLanguage.json -------------------------------------------------------------------------------- /libs/tm-parser/tests-c/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests-c/main.cpp -------------------------------------------------------------------------------- /libs/tm-parser/tests-c/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests-c/meson.build -------------------------------------------------------------------------------- /libs/tm-parser/tests/cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/cases/README.md -------------------------------------------------------------------------------- /libs/tm-parser/tests/cases/app_development.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/cases/app_development.scss -------------------------------------------------------------------------------- /libs/tm-parser/tests/cases/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/cases/test.c -------------------------------------------------------------------------------- /libs/tm-parser/tests/cases/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/cases/test.cpp -------------------------------------------------------------------------------- /libs/tm-parser/tests/cases/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/cases/test.xml -------------------------------------------------------------------------------- /libs/tm-parser/tests/cases/tinywl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/cases/tinywl.c -------------------------------------------------------------------------------- /libs/tm-parser/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/main.cpp -------------------------------------------------------------------------------- /libs/tm-parser/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/meson.build -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/c-plus-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/c-plus-plus.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/c.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/hello.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/html.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/javascript.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/json.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/ruby.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/scss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/scss.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/sql.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/parsed/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/parsed/text.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/c-plus-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/c-plus-plus.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/c.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/coffee-script.jsonsql.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/hello.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/html.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/javascript.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/json.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/ruby.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/scss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/scss.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/sql.json -------------------------------------------------------------------------------- /libs/tm-parser/tests/results/read/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/tests/results/read/text.json -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/extensions/extension.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/extensions/extension.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/extensions/meson.build -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/extensions/tinyxml2.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/extensions/tinyxml2.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/extensions/utf8.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/extensions/utf8.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/extensions/util.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/extensions/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/extensions/util.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/meson.build -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/defines.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/grammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/grammar.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/grammar.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/main.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/meson.build -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/parse.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/parser.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/pattern.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/pattern.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/private.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/reader.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/parser/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/parser/reader.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/resources/grammars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/resources/grammars.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/resources/grammars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/resources/grammars.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/resources/themes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/resources/themes.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/resources/themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/resources/themes.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/scopes/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/scopes/main.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/scopes/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/scopes/match.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/scopes/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/scopes/meson.build -------------------------------------------------------------------------------- /libs/tm-parser/textmate/scopes/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/scopes/parse.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/scopes/scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/scopes/scope.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/scopes/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/scopes/scope.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/scopes/scopes_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/scopes/scopes_parse.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/scopes/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/scopes/types.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/scopes/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/scopes/types.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/textmate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/textmate.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/textmate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/textmate.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/colors.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/main.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/meson.build -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/rgb.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/stringop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/stringop.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/stringop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/stringop.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/theme.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/theme.h -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/util.cpp -------------------------------------------------------------------------------- /libs/tm-parser/textmate/theme/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/libs/tm-parser/textmate/theme/util.h -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/libs: -------------------------------------------------------------------------------- 1 | ../libs -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-03-09 18-11-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/screenshots/Screenshot from 2022-03-09 18-11-43.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-03-30 10-04-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/screenshots/Screenshot from 2022-03-30 10-04-44.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-04-01 22-21-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/screenshots/Screenshot from 2022-04-01 22-21-35.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-04-05 10-47-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/screenshots/Screenshot from 2022-04-05 10-47-24.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-04-10 21-03-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/screenshots/Screenshot from 2022-04-10 21-03-06.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-04-15 16-43-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/screenshots/Screenshot from 2022-04-15 16-43-54.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-04-24 08-34-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/screenshots/Screenshot from 2022-04-24 08-34-12.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-04-26 09-01-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/screenshots/Screenshot from 2022-04-26 09-01-38.png -------------------------------------------------------------------------------- /test/diff_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/test/diff_test.dart -------------------------------------------------------------------------------- /test/doc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/test/doc_test.dart -------------------------------------------------------------------------------- /test/editor_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/test/editor_test.dart -------------------------------------------------------------------------------- /test/explorer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/test/explorer_test.dart -------------------------------------------------------------------------------- /test/indexer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/test/indexer_test.dart -------------------------------------------------------------------------------- /test/levenshtein_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/test/levenshtein_test.dart -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /tests/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/cpp.json -------------------------------------------------------------------------------- /tests/empty.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/extensions/cpp/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/cpp/language-configuration.json -------------------------------------------------------------------------------- /tests/extensions/cpp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/cpp/package.json -------------------------------------------------------------------------------- /tests/extensions/cpp/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/cpp/package.nls.json -------------------------------------------------------------------------------- /tests/extensions/cpp/snippets/c.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/cpp/snippets/c.code-snippets -------------------------------------------------------------------------------- /tests/extensions/cpp/snippets/cpp.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/cpp/snippets/cpp.code-snippets -------------------------------------------------------------------------------- /tests/extensions/cpp/syntaxes/c.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/cpp/syntaxes/c.tmLanguage.json -------------------------------------------------------------------------------- /tests/extensions/cpp/syntaxes/cpp.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/cpp/syntaxes/cpp.tmLanguage.json -------------------------------------------------------------------------------- /tests/extensions/cpp/syntaxes/platform.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/cpp/syntaxes/platform.tmLanguage.json -------------------------------------------------------------------------------- /tests/extensions/theme-monokai-dimmed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/theme-monokai-dimmed/package.json -------------------------------------------------------------------------------- /tests/extensions/theme-monokai-dimmed/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/theme-monokai-dimmed/package.nls.json -------------------------------------------------------------------------------- /tests/extensions/theme-monokai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/theme-monokai/package.json -------------------------------------------------------------------------------- /tests/extensions/theme-monokai/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/extensions/theme-monokai/package.nls.json -------------------------------------------------------------------------------- /tests/includes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/includes.md -------------------------------------------------------------------------------- /tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/main.c -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/main.js -------------------------------------------------------------------------------- /tests/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/sqlite3.c -------------------------------------------------------------------------------- /tests/tinywl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icedman/flutter_editor/HEAD/tests/tinywl.c --------------------------------------------------------------------------------