├── .clang-format ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── build.yaml ├── .gitignore ├── CMakeLists.txt ├── Interpreter ├── CMakeLists.txt ├── DataValue.h ├── interpret.cpp ├── interpret.h ├── parse.cpp ├── parse.h ├── parser.y └── prebuilt │ ├── parser.cpp │ └── parser.hpp ├── LICENSE.md ├── README.md ├── Regex ├── CMakeLists.txt ├── Common.h ├── Compile.cpp ├── Compile.h ├── Constants.h ├── Decompile.cpp ├── Decompile.h ├── Execute.cpp ├── Execute.h ├── Opcodes.h ├── Reader.h ├── Regex.cpp ├── Regex.h ├── RegexError.cpp ├── RegexError.h ├── Substitute.cpp ├── Substitute.h └── test │ ├── CMakeLists.txt │ └── Test.cpp ├── Settings ├── CMakeLists.txt ├── FromInteger.h ├── IndentStyle.h ├── SearchType.h ├── Settings.cpp ├── Settings.h ├── ShowMatchingStyle.h ├── TruncSubstitution.h └── WrapStyle.h ├── Util ├── CMakeLists.txt ├── ClearCase.cpp ├── Environment.cpp ├── FileSystem.cpp ├── Host.cpp ├── Input.cpp ├── Resource.cpp ├── ServerCommon.cpp ├── String.cpp ├── System.cpp ├── User.cpp ├── include │ └── Util │ │ ├── ClearCase.h │ │ ├── Compiler.h │ │ ├── Environment.h │ │ ├── FileFormats.h │ │ ├── FileSystem.h │ │ ├── Host.h │ │ ├── Input.h │ │ ├── QtHelper.h │ │ ├── Raise.h │ │ ├── Resource.h │ │ ├── ServerCommon.h │ │ ├── String.h │ │ ├── System.h │ │ ├── User.h │ │ ├── algorithm.h │ │ ├── regex.h │ │ ├── utils.h │ │ └── version.h.in └── regex.cpp ├── client ├── CMakeLists.txt └── nc.cpp ├── cmake └── Modules │ ├── AddWarnings.cmake │ ├── DetectCompiler.cmake │ ├── DetectOS.cmake │ ├── EnableSTLDebug.cmake │ ├── EnableSanitizers.cmake │ ├── Profiling.cmake │ ├── ProjectDefaults.cmake │ └── QtTranslations.cmake ├── cspell.config.yaml ├── docs ├── .gitignore ├── docs │ ├── 01.md │ ├── 02.md │ ├── 03.md │ ├── 04.md │ ├── 05.md │ ├── 06.md │ ├── 07.md │ ├── 08.md │ ├── 09.md │ ├── 10.md │ ├── 11.md │ ├── 12.md │ ├── 13.md │ ├── 14.md │ ├── 15.md │ ├── 16.md │ ├── 17.md │ ├── 18.md │ ├── 19.md │ ├── 20.md │ ├── 21.md │ ├── 22.md │ ├── 23.md │ ├── 24.md │ ├── 25.md │ ├── 26.md │ ├── 27.md │ ├── 28.md │ ├── 29.md │ ├── 30.md │ ├── 31.md │ ├── 32.md │ ├── 33.md │ ├── 34.md │ ├── 35.md │ ├── 36.md │ ├── 38.md │ ├── 40.md │ ├── 41.md │ ├── 42.md │ ├── css │ │ ├── extra.css │ │ └── version-select.css │ ├── img │ │ ├── nedit-ng-find.png │ │ ├── nedit-ng-fonts.png │ │ ├── nedit-ng-languages.png │ │ └── nedit-ng.png │ ├── index.md │ └── js │ │ └── version-select.js └── mkdocs.yml ├── import ├── CMakeLists.txt └── Import.cpp ├── libs ├── CMakeLists.txt ├── GSL-3.1.0 │ ├── .clang-format │ ├── .github │ │ └── workflows │ │ │ └── main.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── CMakeSettings.json │ ├── CONTRIBUTING.md │ ├── GSL.natvis │ ├── LICENSE │ ├── README.md │ ├── ThirdPartyNotices.txt │ ├── appveyor.yml │ ├── include │ │ └── gsl │ │ │ ├── gsl │ │ │ ├── gsl_algorithm │ │ │ ├── gsl_assert │ │ │ ├── gsl_byte │ │ │ ├── gsl_util │ │ │ ├── multi_span │ │ │ ├── pointers │ │ │ ├── span │ │ │ ├── span_ext │ │ │ └── string_span │ └── tests │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.in │ │ ├── algorithm_tests.cpp │ │ ├── assertion_tests.cpp │ │ ├── at_tests.cpp │ │ ├── bounds_tests.cpp │ │ ├── byte_tests.cpp │ │ ├── multi_span_tests.cpp │ │ ├── no_exception_ensure_tests.cpp │ │ ├── notnull_tests.cpp │ │ ├── owner_tests.cpp │ │ ├── span_compatibility_tests.cpp │ │ ├── span_ext_tests.cpp │ │ ├── span_tests.cpp │ │ ├── strict_notnull_tests.cpp │ │ ├── strided_span_tests.cpp │ │ ├── string_span_tests.cpp │ │ └── utils_tests.cpp └── yaml-cpp-0.8.0 │ ├── .clang-format │ ├── .codedocs │ ├── .github │ └── workflows │ │ └── build.yml │ ├── .gitignore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── CMakeLists.txt.bak │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── WORKSPACE │ ├── cmake_uninstall.cmake.in │ ├── docs │ ├── Breaking-Changes.md │ ├── How-To-Emit-YAML.md │ ├── How-To-Parse-A-Document-(Old-API).md │ ├── Strings.md │ ├── Tutorial.md │ ├── _config.yml │ └── index.md │ ├── include │ └── yaml-cpp │ │ ├── anchor.h │ │ ├── binary.h │ │ ├── contrib │ │ ├── anchordict.h │ │ └── graphbuilder.h │ │ ├── depthguard.h │ │ ├── dll.h │ │ ├── emitfromevents.h │ │ ├── emitter.h │ │ ├── emitterdef.h │ │ ├── emittermanip.h │ │ ├── emitterstyle.h │ │ ├── eventhandler.h │ │ ├── exceptions.h │ │ ├── mark.h │ │ ├── node │ │ ├── convert.h │ │ ├── detail │ │ │ ├── impl.h │ │ │ ├── iterator.h │ │ │ ├── iterator_fwd.h │ │ │ ├── memory.h │ │ │ ├── node.h │ │ │ ├── node_data.h │ │ │ ├── node_iterator.h │ │ │ └── node_ref.h │ │ ├── emit.h │ │ ├── impl.h │ │ ├── iterator.h │ │ ├── node.h │ │ ├── parse.h │ │ ├── ptr.h │ │ └── type.h │ │ ├── noexcept.h │ │ ├── null.h │ │ ├── ostream_wrapper.h │ │ ├── parser.h │ │ ├── stlemitter.h │ │ ├── traits.h │ │ └── yaml.h │ ├── install.txt │ ├── src │ ├── binary.cpp │ ├── collectionstack.h │ ├── contrib │ │ ├── graphbuilder.cpp │ │ ├── graphbuilderadapter.cpp │ │ ├── graphbuilderadapter.h │ │ ├── yaml-cpp.natvis │ │ └── yaml-cpp.natvis.md │ ├── convert.cpp │ ├── depthguard.cpp │ ├── directives.cpp │ ├── directives.h │ ├── emit.cpp │ ├── emitfromevents.cpp │ ├── emitter.cpp │ ├── emitterstate.cpp │ ├── emitterstate.h │ ├── emitterutils.cpp │ ├── emitterutils.h │ ├── exceptions.cpp │ ├── exp.cpp │ ├── exp.h │ ├── indentation.h │ ├── memory.cpp │ ├── node.cpp │ ├── node_data.cpp │ ├── nodebuilder.cpp │ ├── nodebuilder.h │ ├── nodeevents.cpp │ ├── nodeevents.h │ ├── null.cpp │ ├── ostream_wrapper.cpp │ ├── parse.cpp │ ├── parser.cpp │ ├── ptr_vector.h │ ├── regex_yaml.cpp │ ├── regex_yaml.h │ ├── regeximpl.h │ ├── scanner.cpp │ ├── scanner.h │ ├── scanscalar.cpp │ ├── scanscalar.h │ ├── scantag.cpp │ ├── scantag.h │ ├── scantoken.cpp │ ├── setting.h │ ├── simplekey.cpp │ ├── singledocparser.cpp │ ├── singledocparser.h │ ├── stream.cpp │ ├── stream.h │ ├── streamcharsource.h │ ├── stringsource.h │ ├── tag.cpp │ ├── tag.h │ └── token.h │ ├── test │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── binary_test.cpp │ ├── create-emitter-tests.py │ ├── gtest-1.11.0 │ │ ├── .clang-format │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ ├── 00-bug_report.md │ │ │ │ ├── 10-feature_request.md │ │ │ │ └── config.yml │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── ci │ │ │ ├── linux-presubmit.sh │ │ │ └── macos-presubmit.sh │ │ ├── docs │ │ │ ├── _config.yml │ │ │ ├── _data │ │ │ │ └── navigation.yml │ │ │ ├── _layouts │ │ │ │ └── default.html │ │ │ ├── _sass │ │ │ │ └── main.scss │ │ │ ├── advanced.md │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── style.scss │ │ │ ├── community_created_documentation.md │ │ │ ├── faq.md │ │ │ ├── gmock_cheat_sheet.md │ │ │ ├── gmock_cook_book.md │ │ │ ├── gmock_faq.md │ │ │ ├── gmock_for_dummies.md │ │ │ ├── index.md │ │ │ ├── pkgconfig.md │ │ │ ├── platforms.md │ │ │ ├── primer.md │ │ │ ├── quickstart-bazel.md │ │ │ ├── quickstart-cmake.md │ │ │ ├── reference │ │ │ │ ├── actions.md │ │ │ │ ├── assertions.md │ │ │ │ ├── matchers.md │ │ │ │ ├── mocking.md │ │ │ │ └── testing.md │ │ │ └── samples.md │ │ ├── googlemock │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ │ ├── gmock.pc.in │ │ │ │ └── gmock_main.pc.in │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── include │ │ │ │ └── gmock │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ ├── gmock.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ └── gmock-port.h │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ ├── gmock-port.h │ │ │ │ │ └── gmock-pp.h │ │ │ ├── scripts │ │ │ │ ├── README.md │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ └── generator │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── README.cppclean │ │ │ │ │ ├── cpp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast.py │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── tokenize.py │ │ │ │ │ └── utils.py │ │ │ │ │ └── gmock_gen.py │ │ │ ├── src │ │ │ │ ├── gmock-all.cc │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ ├── gmock-matchers.cc │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ ├── gmock.cc │ │ │ │ └── gmock_main.cc │ │ │ └── test │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ ├── gmock-function-mocker_test.cc │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ ├── gmock-port_test.cc │ │ │ │ ├── gmock-pp-string_test.cc │ │ │ │ ├── gmock-pp_test.cc │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ ├── gmock_all_test.cc │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ ├── gmock_leak_test.py │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ ├── gmock_link_test.cc │ │ │ │ ├── gmock_link_test.h │ │ │ │ ├── gmock_output_test.py │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ ├── gmock_test.cc │ │ │ │ └── gmock_test_utils.py │ │ ├── googletest │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ │ ├── Config.cmake.in │ │ │ │ ├── gtest.pc.in │ │ │ │ ├── gtest_main.pc.in │ │ │ │ ├── internal_utils.cmake │ │ │ │ └── libgtest.la.in │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-matchers.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ └── gtest-type-util.h │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.cc │ │ │ │ ├── sample1.h │ │ │ │ ├── sample10_unittest.cc │ │ │ │ ├── sample1_unittest.cc │ │ │ │ ├── sample2.cc │ │ │ │ ├── sample2.h │ │ │ │ ├── sample2_unittest.cc │ │ │ │ ├── sample3-inl.h │ │ │ │ ├── sample3_unittest.cc │ │ │ │ ├── sample4.cc │ │ │ │ ├── sample4.h │ │ │ │ ├── sample4_unittest.cc │ │ │ │ ├── sample5_unittest.cc │ │ │ │ ├── sample6_unittest.cc │ │ │ │ ├── sample7_unittest.cc │ │ │ │ ├── sample8_unittest.cc │ │ │ │ └── sample9_unittest.cc │ │ │ ├── scripts │ │ │ │ ├── README.md │ │ │ │ ├── common.py │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── release_docs.py │ │ │ │ ├── run_with_path.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_gtest.py │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-matchers.cc │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ └── test │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── googletest-break-on-failure-unittest.py │ │ │ │ ├── googletest-break-on-failure-unittest_.cc │ │ │ │ ├── googletest-catch-exceptions-test.py │ │ │ │ ├── googletest-catch-exceptions-test_.cc │ │ │ │ ├── googletest-color-test.py │ │ │ │ ├── googletest-color-test_.cc │ │ │ │ ├── googletest-death-test-test.cc │ │ │ │ ├── googletest-death-test_ex_test.cc │ │ │ │ ├── googletest-env-var-test.py │ │ │ │ ├── googletest-env-var-test_.cc │ │ │ │ ├── googletest-failfast-unittest.py │ │ │ │ ├── googletest-failfast-unittest_.cc │ │ │ │ ├── googletest-filepath-test.cc │ │ │ │ ├── googletest-filter-unittest.py │ │ │ │ ├── googletest-filter-unittest_.cc │ │ │ │ ├── googletest-global-environment-unittest.py │ │ │ │ ├── googletest-global-environment-unittest_.cc │ │ │ │ ├── googletest-json-outfiles-test.py │ │ │ │ ├── googletest-json-output-unittest.py │ │ │ │ ├── googletest-list-tests-unittest.py │ │ │ │ ├── googletest-list-tests-unittest_.cc │ │ │ │ ├── googletest-listener-test.cc │ │ │ │ ├── googletest-message-test.cc │ │ │ │ ├── googletest-options-test.cc │ │ │ │ ├── googletest-output-test-golden-lin.txt │ │ │ │ ├── googletest-output-test.py │ │ │ │ ├── googletest-output-test_.cc │ │ │ │ ├── googletest-param-test-invalid-name1-test.py │ │ │ │ ├── googletest-param-test-invalid-name1-test_.cc │ │ │ │ ├── googletest-param-test-invalid-name2-test.py │ │ │ │ ├── googletest-param-test-invalid-name2-test_.cc │ │ │ │ ├── googletest-param-test-test.cc │ │ │ │ ├── googletest-param-test-test.h │ │ │ │ ├── googletest-param-test2-test.cc │ │ │ │ ├── googletest-port-test.cc │ │ │ │ ├── googletest-printers-test.cc │ │ │ │ ├── googletest-setuptestsuite-test.py │ │ │ │ ├── googletest-setuptestsuite-test_.cc │ │ │ │ ├── googletest-shuffle-test.py │ │ │ │ ├── googletest-shuffle-test_.cc │ │ │ │ ├── googletest-test-part-test.cc │ │ │ │ ├── googletest-throw-on-failure-test.py │ │ │ │ ├── googletest-throw-on-failure-test_.cc │ │ │ │ ├── googletest-uninitialized-test.py │ │ │ │ ├── googletest-uninitialized-test_.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_assert_by_exception_test.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_json_test_utils.py │ │ │ │ ├── gtest_list_output_unittest.py │ │ │ │ ├── gtest_list_output_unittest_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_skip_check_output_test.py │ │ │ │ ├── gtest_skip_environment_check_output_test.py │ │ │ │ ├── gtest_skip_in_environment_setup_test.cc │ │ │ │ ├── gtest_skip_test.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_macro_stack_footprint_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_testbridge_test.py │ │ │ │ ├── gtest_testbridge_test_.cc │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ └── library.json │ ├── handler_test.h │ ├── integration │ │ ├── emitter_test.cpp │ │ ├── encoding_test.cpp │ │ ├── error_messages_test.cpp │ │ ├── gen_emitter_test.cpp │ │ ├── handler_spec_test.cpp │ │ ├── handler_test.cpp │ │ ├── load_node_test.cpp │ │ └── node_spec_test.cpp │ ├── main.cpp │ ├── mock_event_handler.h │ ├── node │ │ └── node_test.cpp │ ├── ostream_wrapper_test.cpp │ ├── parser_test.cpp │ ├── regex_test.cpp │ └── specexamples.h │ ├── util │ ├── CMakeLists.txt │ ├── api.cpp │ ├── parse.cpp │ ├── read.cpp │ └── sandbox.cpp │ ├── yaml-cpp-config.cmake.in │ └── yaml-cpp.pc.in ├── nedit-ng.desktop └── src ├── BlockDragTypes.h ├── Bookmark.h ├── CMakeLists.txt ├── CallTip.h ├── CallTipWidget.cpp ├── CallTipWidget.h ├── CallTipWidget.ui ├── CloseMode.h ├── CommandRecorder.cpp ├── CommandRecorder.h ├── CommandSource.h ├── CommonDialog.h ├── CursorStyles.h ├── Dialog.cpp ├── Dialog.h ├── DialogAbout.cpp ├── DialogAbout.h ├── DialogAbout.ui ├── DialogColors.cpp ├── DialogColors.h ├── DialogColors.ui ├── DialogDrawingStyles.cpp ├── DialogDrawingStyles.h ├── DialogDrawingStyles.ui ├── DialogDuplicateTags.cpp ├── DialogDuplicateTags.h ├── DialogDuplicateTags.ui ├── DialogExecuteCommand.cpp ├── DialogExecuteCommand.h ├── DialogExecuteCommand.ui ├── DialogFilter.cpp ├── DialogFilter.h ├── DialogFilter.ui ├── DialogFind.cpp ├── DialogFind.h ├── DialogFind.ui ├── DialogFonts.cpp ├── DialogFonts.h ├── DialogFonts.ui ├── DialogLanguageModes.cpp ├── DialogLanguageModes.h ├── DialogLanguageModes.ui ├── DialogMacros.cpp ├── DialogMacros.h ├── DialogMacros.ui ├── DialogMoveDocument.cpp ├── DialogMoveDocument.h ├── DialogMoveDocument.ui ├── DialogMultiReplace.cpp ├── DialogMultiReplace.h ├── DialogMultiReplace.ui ├── DialogOutput.cpp ├── DialogOutput.h ├── DialogOutput.ui ├── DialogPrint.cpp ├── DialogPrint.h ├── DialogPrint.ui ├── DialogPrompt.cpp ├── DialogPrompt.h ├── DialogPrompt.ui ├── DialogPromptList.cpp ├── DialogPromptList.h ├── DialogPromptList.ui ├── DialogPromptString.cpp ├── DialogPromptString.h ├── DialogPromptString.ui ├── DialogRepeat.cpp ├── DialogRepeat.h ├── DialogRepeat.ui ├── DialogReplace.cpp ├── DialogReplace.h ├── DialogReplace.ui ├── DialogShellMenu.cpp ├── DialogShellMenu.h ├── DialogShellMenu.ui ├── DialogSmartIndent.cpp ├── DialogSmartIndent.h ├── DialogSmartIndent.ui ├── DialogSmartIndentCommon.cpp ├── DialogSmartIndentCommon.h ├── DialogSmartIndentCommon.ui ├── DialogSyntaxPatterns.cpp ├── DialogSyntaxPatterns.h ├── DialogSyntaxPatterns.ui ├── DialogTabs.cpp ├── DialogTabs.h ├── DialogTabs.ui ├── DialogWindowBackgroundMenu.cpp ├── DialogWindowBackgroundMenu.h ├── DialogWindowBackgroundMenu.ui ├── DialogWindowSize.cpp ├── DialogWindowSize.h ├── DialogWindowSize.ui ├── DialogWindowTitle.cpp ├── DialogWindowTitle.h ├── DialogWindowTitle.ui ├── DialogWrapMargin.cpp ├── DialogWrapMargin.h ├── DialogWrapMargin.ui ├── Direction.h ├── DocumentInfo.cpp ├── DocumentInfo.h ├── DocumentModel.cpp ├── DocumentModel.h ├── DocumentWidget.cpp ├── DocumentWidget.h ├── DocumentWidget.ui ├── DragEndEvent.h ├── DragStates.h ├── EditFlags.h ├── ElidedLabel.cpp ├── ElidedLabel.h ├── ErrorSound.h ├── Font.cpp ├── Font.h ├── Help.cpp ├── Help.h ├── Highlight.cpp ├── Highlight.h ├── HighlightData.h ├── HighlightPattern.cpp ├── HighlightPattern.h ├── HighlightPatternModel.cpp ├── HighlightPatternModel.h ├── HighlightStyle.h ├── HighlightStyleModel.cpp ├── HighlightStyleModel.h ├── KeySequenceEdit.cpp ├── KeySequenceEdit.h ├── LanguageMode.h ├── LanguageModeModel.cpp ├── LanguageModeModel.h ├── LineNumberArea.cpp ├── LineNumberArea.h ├── Location.h ├── LockReasons.h ├── Macro.cpp ├── Macro.h ├── Main.cpp ├── Main.h ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.ui ├── MenuData.h ├── MenuItem.h ├── MenuItemModel.cpp ├── MenuItemModel.h ├── NeditServer.cpp ├── NeditServer.h ├── NewMode.h ├── PatternSet.cpp ├── PatternSet.h ├── Preferences.cpp ├── Preferences.h ├── Rangeset.cpp ├── Rangeset.h ├── RangesetTable.cpp ├── RangesetTable.h ├── ReparseContext.h ├── Search.cpp ├── Search.h ├── Shift.cpp ├── Shift.h ├── ShiftDirection.h ├── SignalBlocker.h ├── SmartIndent.cpp ├── SmartIndent.h ├── SmartIndentEntry.cpp ├── SmartIndentEntry.h ├── SmartIndentEvent.h ├── Style.h ├── StyleTableEntry.h ├── TabWidget.cpp ├── TabWidget.h ├── Tags.cpp ├── Tags.h ├── TextArea.cpp ├── TextArea.h ├── TextAreaMimeData.cpp ├── TextAreaMimeData.h ├── TextBuffer.cpp ├── TextBuffer.h ├── TextBuffer.tcc ├── TextBufferFwd.h ├── TextCursor.h ├── TextEditEvent.cpp ├── TextEditEvent.h ├── TextRange.h ├── Theme.cpp ├── Theme.h ├── UndoInfo.cpp ├── UndoInfo.h ├── UserCommands.cpp ├── UserCommands.h ├── Verbosity.h ├── WindowHighlightData.h ├── WindowMenuEvent.cpp ├── WindowMenuEvent.h ├── WrapMode.h ├── X11Colors.cpp ├── X11Colors.h ├── Yaml.h ├── gap_buffer.h ├── gap_buffer_fwd.h ├── gap_buffer_iterator.h ├── i18n ├── nedit-ng_fi.ts └── nedit-ng_fr.ts ├── nedit.cpp ├── nedit.h └── res ├── DefaultContextMenu.yaml ├── DefaultLanguageModes.yaml ├── DefaultMacroMenu.yaml ├── DefaultPatternSets.yaml ├── DefaultShellMenuFreeBSD.yaml ├── DefaultShellMenuLinux.yaml ├── DefaultShellMenuUnix.yaml ├── DefaultShellMenuWindows.yaml ├── DefaultSmartIndent.yaml ├── DefaultStyles.xml ├── breeze-dark-nedit.qrc ├── breeze-nedit.qrc ├── icons ├── breeze-dark-nedit │ ├── 16x16 │ │ ├── application-exit.svg │ │ ├── arrow-left.svg │ │ ├── bookmark-new.svg │ │ ├── dialog-cancel.svg │ │ ├── dialog-close.svg │ │ ├── dialog-ok-apply.svg │ │ ├── dialog-ok.svg │ │ ├── document-close.svg │ │ ├── document-new.svg │ │ ├── document-open-recent.svg │ │ ├── document-open.svg │ │ ├── document-print.svg │ │ ├── document-revert.svg │ │ ├── document-save-as.svg │ │ ├── document-save.svg │ │ ├── edit-copy.svg │ │ ├── edit-cut.svg │ │ ├── edit-delete.svg │ │ ├── edit-find-replace.svg │ │ ├── edit-find.svg │ │ ├── edit-paste.svg │ │ ├── edit-redo.svg │ │ ├── edit-select-all.svg │ │ ├── edit-select.svg │ │ ├── edit-undo.svg │ │ ├── folder-documents.svg │ │ ├── format-indent-less.svg │ │ ├── format-indent-more.svg │ │ ├── format-text-lowercase.svg │ │ ├── format-text-uppercase.svg │ │ ├── go-down.svg │ │ ├── go-jump.svg │ │ ├── go-up.svg │ │ ├── help-about.svg │ │ ├── help-browser.svg │ │ ├── help-contents.svg │ │ ├── languages.svg │ │ ├── media-record.svg │ │ ├── process-stop.svg │ │ ├── repeat.svg │ │ ├── set-language.svg │ │ ├── tab-close.svg │ │ ├── tab-detach.svg │ │ ├── tab-new.svg │ │ ├── text-wrap.svg │ │ ├── utilities-terminal.svg │ │ ├── view-close.svg │ │ ├── view-filter.svg │ │ ├── view-split-top-bottom.svg │ │ └── whole-window.svg │ ├── 32x32 │ │ └── preferences-desktop-font.svg │ └── index.theme ├── breeze-nedit │ ├── 16x16 │ │ ├── application-exit.svg │ │ ├── arrow-left.svg │ │ ├── bookmark-new.svg │ │ ├── dialog-cancel.svg │ │ ├── dialog-close.svg │ │ ├── dialog-ok-apply.svg │ │ ├── dialog-ok.svg │ │ ├── document-close.svg │ │ ├── document-new.svg │ │ ├── document-open-recent.svg │ │ ├── document-open.svg │ │ ├── document-print.svg │ │ ├── document-revert.svg │ │ ├── document-save-as.svg │ │ ├── document-save.svg │ │ ├── edit-copy.svg │ │ ├── edit-cut.svg │ │ ├── edit-delete.svg │ │ ├── edit-find-replace.svg │ │ ├── edit-find.svg │ │ ├── edit-paste.svg │ │ ├── edit-redo.svg │ │ ├── edit-select-all.svg │ │ ├── edit-select.svg │ │ ├── edit-undo.svg │ │ ├── folder-documents.svg │ │ ├── format-indent-less.svg │ │ ├── format-indent-more.svg │ │ ├── format-text-lowercase.svg │ │ ├── format-text-uppercase.svg │ │ ├── go-down.svg │ │ ├── go-jump.svg │ │ ├── go-up.svg │ │ ├── help-about.svg │ │ ├── help-browser.svg │ │ ├── help-contents.svg │ │ ├── languages.svg │ │ ├── media-record.svg │ │ ├── process-stop.svg │ │ ├── repeat.svg │ │ ├── set-language.svg │ │ ├── tab-close.svg │ │ ├── tab-detach.svg │ │ ├── tab-new.svg │ │ ├── text-wrap.svg │ │ ├── utilities-terminal.svg │ │ ├── view-close.svg │ │ ├── view-filter.svg │ │ ├── view-split-top-bottom.svg │ │ └── whole-window.svg │ ├── 32x32 │ │ └── preferences-desktop-font.svg │ └── index.theme └── nedit │ └── index.theme ├── nedit-ng.ico ├── nedit-ng.png ├── nedit-ng.qrc ├── nedit-ng.rc └── nedit-ng.xpm /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | CMakeLists.txt.user* 3 | .vscode 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Interpreter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Interpreter/CMakeLists.txt -------------------------------------------------------------------------------- /Interpreter/DataValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Interpreter/DataValue.h -------------------------------------------------------------------------------- /Interpreter/interpret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Interpreter/interpret.cpp -------------------------------------------------------------------------------- /Interpreter/interpret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Interpreter/interpret.h -------------------------------------------------------------------------------- /Interpreter/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Interpreter/parse.cpp -------------------------------------------------------------------------------- /Interpreter/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Interpreter/parse.h -------------------------------------------------------------------------------- /Interpreter/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Interpreter/parser.y -------------------------------------------------------------------------------- /Interpreter/prebuilt/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Interpreter/prebuilt/parser.cpp -------------------------------------------------------------------------------- /Interpreter/prebuilt/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Interpreter/prebuilt/parser.hpp -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/README.md -------------------------------------------------------------------------------- /Regex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/CMakeLists.txt -------------------------------------------------------------------------------- /Regex/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Common.h -------------------------------------------------------------------------------- /Regex/Compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Compile.cpp -------------------------------------------------------------------------------- /Regex/Compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Compile.h -------------------------------------------------------------------------------- /Regex/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Constants.h -------------------------------------------------------------------------------- /Regex/Decompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Decompile.cpp -------------------------------------------------------------------------------- /Regex/Decompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Decompile.h -------------------------------------------------------------------------------- /Regex/Execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Execute.cpp -------------------------------------------------------------------------------- /Regex/Execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Execute.h -------------------------------------------------------------------------------- /Regex/Opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Opcodes.h -------------------------------------------------------------------------------- /Regex/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Reader.h -------------------------------------------------------------------------------- /Regex/Regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Regex.cpp -------------------------------------------------------------------------------- /Regex/Regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Regex.h -------------------------------------------------------------------------------- /Regex/RegexError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/RegexError.cpp -------------------------------------------------------------------------------- /Regex/RegexError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/RegexError.h -------------------------------------------------------------------------------- /Regex/Substitute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Substitute.cpp -------------------------------------------------------------------------------- /Regex/Substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/Substitute.h -------------------------------------------------------------------------------- /Regex/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/test/CMakeLists.txt -------------------------------------------------------------------------------- /Regex/test/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Regex/test/Test.cpp -------------------------------------------------------------------------------- /Settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Settings/CMakeLists.txt -------------------------------------------------------------------------------- /Settings/FromInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Settings/FromInteger.h -------------------------------------------------------------------------------- /Settings/IndentStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Settings/IndentStyle.h -------------------------------------------------------------------------------- /Settings/SearchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Settings/SearchType.h -------------------------------------------------------------------------------- /Settings/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Settings/Settings.cpp -------------------------------------------------------------------------------- /Settings/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Settings/Settings.h -------------------------------------------------------------------------------- /Settings/ShowMatchingStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Settings/ShowMatchingStyle.h -------------------------------------------------------------------------------- /Settings/TruncSubstitution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Settings/TruncSubstitution.h -------------------------------------------------------------------------------- /Settings/WrapStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Settings/WrapStyle.h -------------------------------------------------------------------------------- /Util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/CMakeLists.txt -------------------------------------------------------------------------------- /Util/ClearCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/ClearCase.cpp -------------------------------------------------------------------------------- /Util/Environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/Environment.cpp -------------------------------------------------------------------------------- /Util/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/FileSystem.cpp -------------------------------------------------------------------------------- /Util/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/Host.cpp -------------------------------------------------------------------------------- /Util/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/Input.cpp -------------------------------------------------------------------------------- /Util/Resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/Resource.cpp -------------------------------------------------------------------------------- /Util/ServerCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/ServerCommon.cpp -------------------------------------------------------------------------------- /Util/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/String.cpp -------------------------------------------------------------------------------- /Util/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/System.cpp -------------------------------------------------------------------------------- /Util/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/User.cpp -------------------------------------------------------------------------------- /Util/include/Util/ClearCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/ClearCase.h -------------------------------------------------------------------------------- /Util/include/Util/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/Compiler.h -------------------------------------------------------------------------------- /Util/include/Util/Environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/Environment.h -------------------------------------------------------------------------------- /Util/include/Util/FileFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/FileFormats.h -------------------------------------------------------------------------------- /Util/include/Util/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/FileSystem.h -------------------------------------------------------------------------------- /Util/include/Util/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/Host.h -------------------------------------------------------------------------------- /Util/include/Util/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/Input.h -------------------------------------------------------------------------------- /Util/include/Util/QtHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/QtHelper.h -------------------------------------------------------------------------------- /Util/include/Util/Raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/Raise.h -------------------------------------------------------------------------------- /Util/include/Util/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/Resource.h -------------------------------------------------------------------------------- /Util/include/Util/ServerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/ServerCommon.h -------------------------------------------------------------------------------- /Util/include/Util/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/String.h -------------------------------------------------------------------------------- /Util/include/Util/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/System.h -------------------------------------------------------------------------------- /Util/include/Util/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/User.h -------------------------------------------------------------------------------- /Util/include/Util/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/algorithm.h -------------------------------------------------------------------------------- /Util/include/Util/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/regex.h -------------------------------------------------------------------------------- /Util/include/Util/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/utils.h -------------------------------------------------------------------------------- /Util/include/Util/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/include/Util/version.h.in -------------------------------------------------------------------------------- /Util/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/Util/regex.cpp -------------------------------------------------------------------------------- /client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/client/CMakeLists.txt -------------------------------------------------------------------------------- /client/nc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/client/nc.cpp -------------------------------------------------------------------------------- /cmake/Modules/AddWarnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/cmake/Modules/AddWarnings.cmake -------------------------------------------------------------------------------- /cmake/Modules/DetectCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/cmake/Modules/DetectCompiler.cmake -------------------------------------------------------------------------------- /cmake/Modules/DetectOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/cmake/Modules/DetectOS.cmake -------------------------------------------------------------------------------- /cmake/Modules/EnableSTLDebug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/cmake/Modules/EnableSTLDebug.cmake -------------------------------------------------------------------------------- /cmake/Modules/EnableSanitizers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/cmake/Modules/EnableSanitizers.cmake -------------------------------------------------------------------------------- /cmake/Modules/Profiling.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/cmake/Modules/Profiling.cmake -------------------------------------------------------------------------------- /cmake/Modules/ProjectDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/cmake/Modules/ProjectDefaults.cmake -------------------------------------------------------------------------------- /cmake/Modules/QtTranslations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/cmake/Modules/QtTranslations.cmake -------------------------------------------------------------------------------- /cspell.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/cspell.config.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | site/ 2 | -------------------------------------------------------------------------------- /docs/docs/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/01.md -------------------------------------------------------------------------------- /docs/docs/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/02.md -------------------------------------------------------------------------------- /docs/docs/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/03.md -------------------------------------------------------------------------------- /docs/docs/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/04.md -------------------------------------------------------------------------------- /docs/docs/05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/05.md -------------------------------------------------------------------------------- /docs/docs/06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/06.md -------------------------------------------------------------------------------- /docs/docs/07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/07.md -------------------------------------------------------------------------------- /docs/docs/08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/08.md -------------------------------------------------------------------------------- /docs/docs/09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/09.md -------------------------------------------------------------------------------- /docs/docs/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/10.md -------------------------------------------------------------------------------- /docs/docs/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/11.md -------------------------------------------------------------------------------- /docs/docs/12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/12.md -------------------------------------------------------------------------------- /docs/docs/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/13.md -------------------------------------------------------------------------------- /docs/docs/14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/14.md -------------------------------------------------------------------------------- /docs/docs/15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/15.md -------------------------------------------------------------------------------- /docs/docs/16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/16.md -------------------------------------------------------------------------------- /docs/docs/17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/17.md -------------------------------------------------------------------------------- /docs/docs/18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/18.md -------------------------------------------------------------------------------- /docs/docs/19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/19.md -------------------------------------------------------------------------------- /docs/docs/20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/20.md -------------------------------------------------------------------------------- /docs/docs/21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/21.md -------------------------------------------------------------------------------- /docs/docs/22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/22.md -------------------------------------------------------------------------------- /docs/docs/23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/23.md -------------------------------------------------------------------------------- /docs/docs/24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/24.md -------------------------------------------------------------------------------- /docs/docs/25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/25.md -------------------------------------------------------------------------------- /docs/docs/26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/26.md -------------------------------------------------------------------------------- /docs/docs/27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/27.md -------------------------------------------------------------------------------- /docs/docs/28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/28.md -------------------------------------------------------------------------------- /docs/docs/29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/29.md -------------------------------------------------------------------------------- /docs/docs/30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/30.md -------------------------------------------------------------------------------- /docs/docs/31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/31.md -------------------------------------------------------------------------------- /docs/docs/32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/32.md -------------------------------------------------------------------------------- /docs/docs/33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/33.md -------------------------------------------------------------------------------- /docs/docs/34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/34.md -------------------------------------------------------------------------------- /docs/docs/35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/35.md -------------------------------------------------------------------------------- /docs/docs/36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/36.md -------------------------------------------------------------------------------- /docs/docs/38.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/38.md -------------------------------------------------------------------------------- /docs/docs/40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/40.md -------------------------------------------------------------------------------- /docs/docs/41.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/41.md -------------------------------------------------------------------------------- /docs/docs/42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/42.md -------------------------------------------------------------------------------- /docs/docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/css/extra.css -------------------------------------------------------------------------------- /docs/docs/css/version-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/css/version-select.css -------------------------------------------------------------------------------- /docs/docs/img/nedit-ng-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/img/nedit-ng-find.png -------------------------------------------------------------------------------- /docs/docs/img/nedit-ng-fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/img/nedit-ng-fonts.png -------------------------------------------------------------------------------- /docs/docs/img/nedit-ng-languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/img/nedit-ng-languages.png -------------------------------------------------------------------------------- /docs/docs/img/nedit-ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/img/nedit-ng.png -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/js/version-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/docs/js/version-select.js -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /import/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/import/CMakeLists.txt -------------------------------------------------------------------------------- /import/Import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/import/Import.cpp -------------------------------------------------------------------------------- /libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/CMakeLists.txt -------------------------------------------------------------------------------- /libs/GSL-3.1.0/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/.clang-format -------------------------------------------------------------------------------- /libs/GSL-3.1.0/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/.github/workflows/main.yml -------------------------------------------------------------------------------- /libs/GSL-3.1.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/.gitignore -------------------------------------------------------------------------------- /libs/GSL-3.1.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/.travis.yml -------------------------------------------------------------------------------- /libs/GSL-3.1.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/CMakeLists.txt -------------------------------------------------------------------------------- /libs/GSL-3.1.0/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/CMakeSettings.json -------------------------------------------------------------------------------- /libs/GSL-3.1.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /libs/GSL-3.1.0/GSL.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/GSL.natvis -------------------------------------------------------------------------------- /libs/GSL-3.1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/LICENSE -------------------------------------------------------------------------------- /libs/GSL-3.1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/README.md -------------------------------------------------------------------------------- /libs/GSL-3.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /libs/GSL-3.1.0/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/appveyor.yml -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/gsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/gsl -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/gsl_algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/gsl_algorithm -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/gsl_assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/gsl_assert -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/gsl_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/gsl_byte -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/gsl_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/gsl_util -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/multi_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/multi_span -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/pointers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/pointers -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/span -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/span_ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/span_ext -------------------------------------------------------------------------------- /libs/GSL-3.1.0/include/gsl/string_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/include/gsl/string_span -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/CMakeLists.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/CMakeLists.txt.in -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/algorithm_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/algorithm_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/assertion_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/assertion_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/at_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/at_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/bounds_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/bounds_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/byte_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/byte_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/multi_span_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/multi_span_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/no_exception_ensure_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/no_exception_ensure_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/notnull_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/notnull_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/owner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/owner_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/span_compatibility_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/span_compatibility_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/span_ext_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/span_ext_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/span_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/span_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/strict_notnull_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/strict_notnull_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/strided_span_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/strided_span_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/string_span_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/string_span_tests.cpp -------------------------------------------------------------------------------- /libs/GSL-3.1.0/tests/utils_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/GSL-3.1.0/tests/utils_tests.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/.clang-format -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/.codedocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/.codedocs -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/.github/workflows/build.yml -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | /tags 3 | /bazel-* 4 | -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/BUILD.bazel -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/CMakeLists.txt -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/CMakeLists.txt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/CMakeLists.txt.bak -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/LICENSE -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/README.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/SECURITY.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/WORKSPACE -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/docs/Breaking-Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/docs/Breaking-Changes.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/docs/How-To-Emit-YAML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/docs/How-To-Emit-YAML.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/docs/How-To-Parse-A-Document-(Old-API).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/docs/How-To-Parse-A-Document-(Old-API).md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/docs/Strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/docs/Strings.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/docs/Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/docs/Tutorial.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/docs/_config.yml -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/docs/index.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/anchor.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/binary.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/contrib/anchordict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/contrib/anchordict.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/contrib/graphbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/contrib/graphbuilder.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/depthguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/depthguard.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/dll.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/emitfromevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/emitfromevents.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/emitter.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/emitterdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/emitterdef.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/emittermanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/emittermanip.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/emitterstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/emitterstyle.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/eventhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/eventhandler.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/exceptions.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/mark.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/convert.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/impl.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/iterator.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/iterator_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/iterator_fwd.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/memory.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/node.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/node_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/node_data.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/node_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/node_iterator.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/node_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/detail/node_ref.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/emit.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/impl.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/iterator.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/node.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/parse.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/ptr.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/node/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/node/type.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/noexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/noexcept.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/null.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/ostream_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/ostream_wrapper.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/parser.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/stlemitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/stlemitter.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/traits.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/include/yaml-cpp/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/include/yaml-cpp/yaml.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/install.txt -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/binary.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/collectionstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/collectionstack.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/contrib/graphbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/contrib/graphbuilder.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/contrib/graphbuilderadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/contrib/graphbuilderadapter.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/contrib/graphbuilderadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/contrib/graphbuilderadapter.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/contrib/yaml-cpp.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/contrib/yaml-cpp.natvis -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/contrib/yaml-cpp.natvis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/contrib/yaml-cpp.natvis.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/convert.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/depthguard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/depthguard.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/directives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/directives.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/directives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/directives.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/emit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/emit.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/emitfromevents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/emitfromevents.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/emitter.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/emitterstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/emitterstate.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/emitterstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/emitterstate.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/emitterutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/emitterutils.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/emitterutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/emitterutils.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/exceptions.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/exp.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/exp.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/indentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/indentation.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/memory.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/node.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/node_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/node_data.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/nodebuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/nodebuilder.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/nodebuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/nodebuilder.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/nodeevents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/nodeevents.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/nodeevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/nodeevents.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/null.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/ostream_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/ostream_wrapper.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/parse.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/parser.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/ptr_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/ptr_vector.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/regex_yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/regex_yaml.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/regex_yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/regex_yaml.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/regeximpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/regeximpl.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/scanner.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/scanner.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/scanscalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/scanscalar.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/scanscalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/scanscalar.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/scantag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/scantag.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/scantag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/scantag.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/scantoken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/scantoken.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/setting.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/simplekey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/simplekey.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/singledocparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/singledocparser.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/singledocparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/singledocparser.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/stream.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/stream.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/streamcharsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/streamcharsource.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/stringsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/stringsource.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/tag.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/tag.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/src/token.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/BUILD.bazel -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/CMakeLists.txt -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/binary_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/binary_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/create-emitter-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/create-emitter-tests.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/.clang-format -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/.github/ISSUE_TEMPLATE/00-bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/.github/ISSUE_TEMPLATE/00-bug_report.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/.gitignore -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/BUILD.bazel -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/CMakeLists.txt -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/CONTRIBUTORS -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/LICENSE -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/README.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/WORKSPACE -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/ci/linux-presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/ci/linux-presubmit.sh -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/ci/macos-presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/ci/macos-presubmit.sh -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: GoogleTest 2 | -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/_data/navigation.yml -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/_layouts/default.html -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/_sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/_sass/main.scss -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/advanced.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/assets/css/style.scss -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/community_created_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/community_created_documentation.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/faq.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/gmock_cheat_sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/gmock_cheat_sheet.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/gmock_cook_book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/gmock_cook_book.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/gmock_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/gmock_faq.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/gmock_for_dummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/gmock_for_dummies.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/index.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/pkgconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/pkgconfig.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/platforms.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/primer.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/quickstart-bazel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/quickstart-bazel.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/quickstart-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/quickstart-cmake.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/actions.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/assertions.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/matchers.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/mocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/mocking.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/reference/testing.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/docs/samples.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/CMakeLists.txt -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/README.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/cmake/gmock.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/cmake/gmock.pc.in -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/cmake/gmock_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/cmake/gmock_main.pc.in -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/docs/README.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/include/gmock/gmock-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/include/gmock/gmock-actions.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/include/gmock/gmock-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/include/gmock/gmock-matchers.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/include/gmock/gmock.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/README.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/fuse_gmock_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/fuse_gmock_files.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/LICENSE -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/README -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/cpp/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/cpp/ast.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/cpp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/cpp/utils.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/gmock_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/scripts/generator/gmock_gen.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-all.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-internal-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-internal-utils.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/src/gmock_main.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/BUILD.bazel -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-actions_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-cardinalities_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-cardinalities_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-matchers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-matchers_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-more-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-more-actions_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-nice-strict_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-nice-strict_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-port_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-pp-string_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-pp-string_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-pp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-pp_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-spec-builders_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock-spec-builders_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_all_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_ex_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_leak_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_leak_test.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_leak_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_leak_test_.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_link2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_link2_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_link_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_link_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_link_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_link_test.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_output_test.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_output_test_.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_stress_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googlemock/test/gmock_test_utils.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/README.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/Config.cmake.in -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/gtest.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/gtest.pc.in -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/gtest_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/gtest_main.pc.in -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/libgtest.la.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/cmake/libgtest.la.in -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/docs/README.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-matchers.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/prime_tables.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample1.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample1.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample2.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample2.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample3-inl.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample4.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample4.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/README.md -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/common.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/gtest-config.in -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/release_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/release_docs.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/run_with_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/run_with_path.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/upload.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/upload_gtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/scripts/upload_gtest.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-matchers.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/BUILD.bazel -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-color-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-color-test.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-color-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-color-test_.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-env-var-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-env-var-test.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-env-var-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-env-var-test_.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-filepath-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-filepath-test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-listener-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-listener-test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-message-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-message-test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-options-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-options-test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-output-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-output-test.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-output-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-output-test_.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-port-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-port-test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-printers-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-printers-test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-shuffle-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-shuffle-test.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-shuffle-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/googletest-shuffle-test_.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_help_test.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_json_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_json_test_utils.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_skip_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_skip_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_testbridge_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_testbridge_test.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/production.cc -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/googletest/test/production.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/gtest-1.11.0/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/gtest-1.11.0/library.json -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/handler_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/handler_test.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/integration/emitter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/integration/emitter_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/integration/encoding_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/integration/encoding_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/integration/error_messages_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/integration/error_messages_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/integration/gen_emitter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/integration/gen_emitter_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/integration/handler_spec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/integration/handler_spec_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/integration/handler_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/integration/handler_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/integration/load_node_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/integration/load_node_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/integration/node_spec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/integration/node_spec_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/main.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/mock_event_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/mock_event_handler.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/node/node_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/node/node_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/ostream_wrapper_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/ostream_wrapper_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/parser_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/parser_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/regex_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/regex_test.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/test/specexamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/test/specexamples.h -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/util/CMakeLists.txt -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/util/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/util/api.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/util/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/util/parse.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/util/read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/util/read.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/util/sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/util/sandbox.cpp -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/yaml-cpp-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/yaml-cpp-config.cmake.in -------------------------------------------------------------------------------- /libs/yaml-cpp-0.8.0/yaml-cpp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/libs/yaml-cpp-0.8.0/yaml-cpp.pc.in -------------------------------------------------------------------------------- /nedit-ng.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/nedit-ng.desktop -------------------------------------------------------------------------------- /src/BlockDragTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/BlockDragTypes.h -------------------------------------------------------------------------------- /src/Bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Bookmark.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CallTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CallTip.h -------------------------------------------------------------------------------- /src/CallTipWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CallTipWidget.cpp -------------------------------------------------------------------------------- /src/CallTipWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CallTipWidget.h -------------------------------------------------------------------------------- /src/CallTipWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CallTipWidget.ui -------------------------------------------------------------------------------- /src/CloseMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CloseMode.h -------------------------------------------------------------------------------- /src/CommandRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CommandRecorder.cpp -------------------------------------------------------------------------------- /src/CommandRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CommandRecorder.h -------------------------------------------------------------------------------- /src/CommandSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CommandSource.h -------------------------------------------------------------------------------- /src/CommonDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CommonDialog.h -------------------------------------------------------------------------------- /src/CursorStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/CursorStyles.h -------------------------------------------------------------------------------- /src/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Dialog.cpp -------------------------------------------------------------------------------- /src/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Dialog.h -------------------------------------------------------------------------------- /src/DialogAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogAbout.cpp -------------------------------------------------------------------------------- /src/DialogAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogAbout.h -------------------------------------------------------------------------------- /src/DialogAbout.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogAbout.ui -------------------------------------------------------------------------------- /src/DialogColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogColors.cpp -------------------------------------------------------------------------------- /src/DialogColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogColors.h -------------------------------------------------------------------------------- /src/DialogColors.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogColors.ui -------------------------------------------------------------------------------- /src/DialogDrawingStyles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogDrawingStyles.cpp -------------------------------------------------------------------------------- /src/DialogDrawingStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogDrawingStyles.h -------------------------------------------------------------------------------- /src/DialogDrawingStyles.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogDrawingStyles.ui -------------------------------------------------------------------------------- /src/DialogDuplicateTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogDuplicateTags.cpp -------------------------------------------------------------------------------- /src/DialogDuplicateTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogDuplicateTags.h -------------------------------------------------------------------------------- /src/DialogDuplicateTags.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogDuplicateTags.ui -------------------------------------------------------------------------------- /src/DialogExecuteCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogExecuteCommand.cpp -------------------------------------------------------------------------------- /src/DialogExecuteCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogExecuteCommand.h -------------------------------------------------------------------------------- /src/DialogExecuteCommand.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogExecuteCommand.ui -------------------------------------------------------------------------------- /src/DialogFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogFilter.cpp -------------------------------------------------------------------------------- /src/DialogFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogFilter.h -------------------------------------------------------------------------------- /src/DialogFilter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogFilter.ui -------------------------------------------------------------------------------- /src/DialogFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogFind.cpp -------------------------------------------------------------------------------- /src/DialogFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogFind.h -------------------------------------------------------------------------------- /src/DialogFind.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogFind.ui -------------------------------------------------------------------------------- /src/DialogFonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogFonts.cpp -------------------------------------------------------------------------------- /src/DialogFonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogFonts.h -------------------------------------------------------------------------------- /src/DialogFonts.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogFonts.ui -------------------------------------------------------------------------------- /src/DialogLanguageModes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogLanguageModes.cpp -------------------------------------------------------------------------------- /src/DialogLanguageModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogLanguageModes.h -------------------------------------------------------------------------------- /src/DialogLanguageModes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogLanguageModes.ui -------------------------------------------------------------------------------- /src/DialogMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogMacros.cpp -------------------------------------------------------------------------------- /src/DialogMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogMacros.h -------------------------------------------------------------------------------- /src/DialogMacros.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogMacros.ui -------------------------------------------------------------------------------- /src/DialogMoveDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogMoveDocument.cpp -------------------------------------------------------------------------------- /src/DialogMoveDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogMoveDocument.h -------------------------------------------------------------------------------- /src/DialogMoveDocument.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogMoveDocument.ui -------------------------------------------------------------------------------- /src/DialogMultiReplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogMultiReplace.cpp -------------------------------------------------------------------------------- /src/DialogMultiReplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogMultiReplace.h -------------------------------------------------------------------------------- /src/DialogMultiReplace.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogMultiReplace.ui -------------------------------------------------------------------------------- /src/DialogOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogOutput.cpp -------------------------------------------------------------------------------- /src/DialogOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogOutput.h -------------------------------------------------------------------------------- /src/DialogOutput.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogOutput.ui -------------------------------------------------------------------------------- /src/DialogPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPrint.cpp -------------------------------------------------------------------------------- /src/DialogPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPrint.h -------------------------------------------------------------------------------- /src/DialogPrint.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPrint.ui -------------------------------------------------------------------------------- /src/DialogPrompt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPrompt.cpp -------------------------------------------------------------------------------- /src/DialogPrompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPrompt.h -------------------------------------------------------------------------------- /src/DialogPrompt.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPrompt.ui -------------------------------------------------------------------------------- /src/DialogPromptList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPromptList.cpp -------------------------------------------------------------------------------- /src/DialogPromptList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPromptList.h -------------------------------------------------------------------------------- /src/DialogPromptList.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPromptList.ui -------------------------------------------------------------------------------- /src/DialogPromptString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPromptString.cpp -------------------------------------------------------------------------------- /src/DialogPromptString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPromptString.h -------------------------------------------------------------------------------- /src/DialogPromptString.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogPromptString.ui -------------------------------------------------------------------------------- /src/DialogRepeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogRepeat.cpp -------------------------------------------------------------------------------- /src/DialogRepeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogRepeat.h -------------------------------------------------------------------------------- /src/DialogRepeat.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogRepeat.ui -------------------------------------------------------------------------------- /src/DialogReplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogReplace.cpp -------------------------------------------------------------------------------- /src/DialogReplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogReplace.h -------------------------------------------------------------------------------- /src/DialogReplace.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogReplace.ui -------------------------------------------------------------------------------- /src/DialogShellMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogShellMenu.cpp -------------------------------------------------------------------------------- /src/DialogShellMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogShellMenu.h -------------------------------------------------------------------------------- /src/DialogShellMenu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogShellMenu.ui -------------------------------------------------------------------------------- /src/DialogSmartIndent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogSmartIndent.cpp -------------------------------------------------------------------------------- /src/DialogSmartIndent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogSmartIndent.h -------------------------------------------------------------------------------- /src/DialogSmartIndent.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogSmartIndent.ui -------------------------------------------------------------------------------- /src/DialogSmartIndentCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogSmartIndentCommon.cpp -------------------------------------------------------------------------------- /src/DialogSmartIndentCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogSmartIndentCommon.h -------------------------------------------------------------------------------- /src/DialogSmartIndentCommon.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogSmartIndentCommon.ui -------------------------------------------------------------------------------- /src/DialogSyntaxPatterns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogSyntaxPatterns.cpp -------------------------------------------------------------------------------- /src/DialogSyntaxPatterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogSyntaxPatterns.h -------------------------------------------------------------------------------- /src/DialogSyntaxPatterns.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogSyntaxPatterns.ui -------------------------------------------------------------------------------- /src/DialogTabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogTabs.cpp -------------------------------------------------------------------------------- /src/DialogTabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogTabs.h -------------------------------------------------------------------------------- /src/DialogTabs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogTabs.ui -------------------------------------------------------------------------------- /src/DialogWindowBackgroundMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWindowBackgroundMenu.cpp -------------------------------------------------------------------------------- /src/DialogWindowBackgroundMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWindowBackgroundMenu.h -------------------------------------------------------------------------------- /src/DialogWindowBackgroundMenu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWindowBackgroundMenu.ui -------------------------------------------------------------------------------- /src/DialogWindowSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWindowSize.cpp -------------------------------------------------------------------------------- /src/DialogWindowSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWindowSize.h -------------------------------------------------------------------------------- /src/DialogWindowSize.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWindowSize.ui -------------------------------------------------------------------------------- /src/DialogWindowTitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWindowTitle.cpp -------------------------------------------------------------------------------- /src/DialogWindowTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWindowTitle.h -------------------------------------------------------------------------------- /src/DialogWindowTitle.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWindowTitle.ui -------------------------------------------------------------------------------- /src/DialogWrapMargin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWrapMargin.cpp -------------------------------------------------------------------------------- /src/DialogWrapMargin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWrapMargin.h -------------------------------------------------------------------------------- /src/DialogWrapMargin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DialogWrapMargin.ui -------------------------------------------------------------------------------- /src/Direction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Direction.h -------------------------------------------------------------------------------- /src/DocumentInfo.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "DocumentInfo.h" 3 | -------------------------------------------------------------------------------- /src/DocumentInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DocumentInfo.h -------------------------------------------------------------------------------- /src/DocumentModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DocumentModel.cpp -------------------------------------------------------------------------------- /src/DocumentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DocumentModel.h -------------------------------------------------------------------------------- /src/DocumentWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DocumentWidget.cpp -------------------------------------------------------------------------------- /src/DocumentWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DocumentWidget.h -------------------------------------------------------------------------------- /src/DocumentWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DocumentWidget.ui -------------------------------------------------------------------------------- /src/DragEndEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DragEndEvent.h -------------------------------------------------------------------------------- /src/DragStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/DragStates.h -------------------------------------------------------------------------------- /src/EditFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/EditFlags.h -------------------------------------------------------------------------------- /src/ElidedLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/ElidedLabel.cpp -------------------------------------------------------------------------------- /src/ElidedLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/ElidedLabel.h -------------------------------------------------------------------------------- /src/ErrorSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/ErrorSound.h -------------------------------------------------------------------------------- /src/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Font.cpp -------------------------------------------------------------------------------- /src/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Font.h -------------------------------------------------------------------------------- /src/Help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Help.cpp -------------------------------------------------------------------------------- /src/Help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Help.h -------------------------------------------------------------------------------- /src/Highlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Highlight.cpp -------------------------------------------------------------------------------- /src/Highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Highlight.h -------------------------------------------------------------------------------- /src/HighlightData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/HighlightData.h -------------------------------------------------------------------------------- /src/HighlightPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/HighlightPattern.cpp -------------------------------------------------------------------------------- /src/HighlightPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/HighlightPattern.h -------------------------------------------------------------------------------- /src/HighlightPatternModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/HighlightPatternModel.cpp -------------------------------------------------------------------------------- /src/HighlightPatternModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/HighlightPatternModel.h -------------------------------------------------------------------------------- /src/HighlightStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/HighlightStyle.h -------------------------------------------------------------------------------- /src/HighlightStyleModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/HighlightStyleModel.cpp -------------------------------------------------------------------------------- /src/HighlightStyleModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/HighlightStyleModel.h -------------------------------------------------------------------------------- /src/KeySequenceEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/KeySequenceEdit.cpp -------------------------------------------------------------------------------- /src/KeySequenceEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/KeySequenceEdit.h -------------------------------------------------------------------------------- /src/LanguageMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/LanguageMode.h -------------------------------------------------------------------------------- /src/LanguageModeModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/LanguageModeModel.cpp -------------------------------------------------------------------------------- /src/LanguageModeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/LanguageModeModel.h -------------------------------------------------------------------------------- /src/LineNumberArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/LineNumberArea.cpp -------------------------------------------------------------------------------- /src/LineNumberArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/LineNumberArea.h -------------------------------------------------------------------------------- /src/Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Location.h -------------------------------------------------------------------------------- /src/LockReasons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/LockReasons.h -------------------------------------------------------------------------------- /src/Macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Macro.cpp -------------------------------------------------------------------------------- /src/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Macro.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Main.h -------------------------------------------------------------------------------- /src/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/MainWindow.cpp -------------------------------------------------------------------------------- /src/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/MainWindow.h -------------------------------------------------------------------------------- /src/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/MainWindow.ui -------------------------------------------------------------------------------- /src/MenuData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/MenuData.h -------------------------------------------------------------------------------- /src/MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/MenuItem.h -------------------------------------------------------------------------------- /src/MenuItemModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/MenuItemModel.cpp -------------------------------------------------------------------------------- /src/MenuItemModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/MenuItemModel.h -------------------------------------------------------------------------------- /src/NeditServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/NeditServer.cpp -------------------------------------------------------------------------------- /src/NeditServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/NeditServer.h -------------------------------------------------------------------------------- /src/NewMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/NewMode.h -------------------------------------------------------------------------------- /src/PatternSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/PatternSet.cpp -------------------------------------------------------------------------------- /src/PatternSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/PatternSet.h -------------------------------------------------------------------------------- /src/Preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Preferences.cpp -------------------------------------------------------------------------------- /src/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Preferences.h -------------------------------------------------------------------------------- /src/Rangeset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Rangeset.cpp -------------------------------------------------------------------------------- /src/Rangeset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Rangeset.h -------------------------------------------------------------------------------- /src/RangesetTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/RangesetTable.cpp -------------------------------------------------------------------------------- /src/RangesetTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/RangesetTable.h -------------------------------------------------------------------------------- /src/ReparseContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/ReparseContext.h -------------------------------------------------------------------------------- /src/Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Search.cpp -------------------------------------------------------------------------------- /src/Search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Search.h -------------------------------------------------------------------------------- /src/Shift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Shift.cpp -------------------------------------------------------------------------------- /src/Shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Shift.h -------------------------------------------------------------------------------- /src/ShiftDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/ShiftDirection.h -------------------------------------------------------------------------------- /src/SignalBlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/SignalBlocker.h -------------------------------------------------------------------------------- /src/SmartIndent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/SmartIndent.cpp -------------------------------------------------------------------------------- /src/SmartIndent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/SmartIndent.h -------------------------------------------------------------------------------- /src/SmartIndentEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/SmartIndentEntry.cpp -------------------------------------------------------------------------------- /src/SmartIndentEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/SmartIndentEntry.h -------------------------------------------------------------------------------- /src/SmartIndentEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/SmartIndentEvent.h -------------------------------------------------------------------------------- /src/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Style.h -------------------------------------------------------------------------------- /src/StyleTableEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/StyleTableEntry.h -------------------------------------------------------------------------------- /src/TabWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TabWidget.cpp -------------------------------------------------------------------------------- /src/TabWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TabWidget.h -------------------------------------------------------------------------------- /src/Tags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Tags.cpp -------------------------------------------------------------------------------- /src/Tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Tags.h -------------------------------------------------------------------------------- /src/TextArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextArea.cpp -------------------------------------------------------------------------------- /src/TextArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextArea.h -------------------------------------------------------------------------------- /src/TextAreaMimeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextAreaMimeData.cpp -------------------------------------------------------------------------------- /src/TextAreaMimeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextAreaMimeData.h -------------------------------------------------------------------------------- /src/TextBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextBuffer.cpp -------------------------------------------------------------------------------- /src/TextBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextBuffer.h -------------------------------------------------------------------------------- /src/TextBuffer.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextBuffer.tcc -------------------------------------------------------------------------------- /src/TextBufferFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextBufferFwd.h -------------------------------------------------------------------------------- /src/TextCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextCursor.h -------------------------------------------------------------------------------- /src/TextEditEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextEditEvent.cpp -------------------------------------------------------------------------------- /src/TextEditEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextEditEvent.h -------------------------------------------------------------------------------- /src/TextRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/TextRange.h -------------------------------------------------------------------------------- /src/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Theme.cpp -------------------------------------------------------------------------------- /src/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Theme.h -------------------------------------------------------------------------------- /src/UndoInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/UndoInfo.cpp -------------------------------------------------------------------------------- /src/UndoInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/UndoInfo.h -------------------------------------------------------------------------------- /src/UserCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/UserCommands.cpp -------------------------------------------------------------------------------- /src/UserCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/UserCommands.h -------------------------------------------------------------------------------- /src/Verbosity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Verbosity.h -------------------------------------------------------------------------------- /src/WindowHighlightData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/WindowHighlightData.h -------------------------------------------------------------------------------- /src/WindowMenuEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/WindowMenuEvent.cpp -------------------------------------------------------------------------------- /src/WindowMenuEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/WindowMenuEvent.h -------------------------------------------------------------------------------- /src/WrapMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/WrapMode.h -------------------------------------------------------------------------------- /src/X11Colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/X11Colors.cpp -------------------------------------------------------------------------------- /src/X11Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/X11Colors.h -------------------------------------------------------------------------------- /src/Yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/Yaml.h -------------------------------------------------------------------------------- /src/gap_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/gap_buffer.h -------------------------------------------------------------------------------- /src/gap_buffer_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/gap_buffer_fwd.h -------------------------------------------------------------------------------- /src/gap_buffer_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/gap_buffer_iterator.h -------------------------------------------------------------------------------- /src/i18n/nedit-ng_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/i18n/nedit-ng_fi.ts -------------------------------------------------------------------------------- /src/i18n/nedit-ng_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/i18n/nedit-ng_fr.ts -------------------------------------------------------------------------------- /src/nedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/nedit.cpp -------------------------------------------------------------------------------- /src/nedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/nedit.h -------------------------------------------------------------------------------- /src/res/DefaultContextMenu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/DefaultContextMenu.yaml -------------------------------------------------------------------------------- /src/res/DefaultLanguageModes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/DefaultLanguageModes.yaml -------------------------------------------------------------------------------- /src/res/DefaultMacroMenu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/DefaultMacroMenu.yaml -------------------------------------------------------------------------------- /src/res/DefaultPatternSets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/DefaultPatternSets.yaml -------------------------------------------------------------------------------- /src/res/DefaultShellMenuFreeBSD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/DefaultShellMenuFreeBSD.yaml -------------------------------------------------------------------------------- /src/res/DefaultShellMenuLinux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/DefaultShellMenuLinux.yaml -------------------------------------------------------------------------------- /src/res/DefaultShellMenuUnix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/DefaultShellMenuUnix.yaml -------------------------------------------------------------------------------- /src/res/DefaultShellMenuWindows.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/res/DefaultSmartIndent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/DefaultSmartIndent.yaml -------------------------------------------------------------------------------- /src/res/DefaultStyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/DefaultStyles.xml -------------------------------------------------------------------------------- /src/res/breeze-dark-nedit.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/breeze-dark-nedit.qrc -------------------------------------------------------------------------------- /src/res/breeze-nedit.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/breeze-nedit.qrc -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/application-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/application-exit.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/arrow-left.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/bookmark-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/bookmark-new.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/dialog-cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/dialog-cancel.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/dialog-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/dialog-close.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/dialog-ok-apply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/dialog-ok-apply.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/dialog-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/dialog-ok.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/document-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/document-close.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/document-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/document-new.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/document-open-recent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/document-open-recent.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/document-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/document-open.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/document-print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/document-print.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/document-revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/document-revert.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/document-save-as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/document-save-as.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/document-save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/document-save.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-copy.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-cut.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-delete.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-find-replace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-find-replace.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-find.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-paste.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-redo.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-select-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-select-all.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-select.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/edit-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/edit-undo.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/folder-documents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/folder-documents.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/format-indent-less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/format-indent-less.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/format-indent-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/format-indent-more.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/format-text-lowercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/format-text-lowercase.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/format-text-uppercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/format-text-uppercase.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/go-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/go-down.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/go-jump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/go-jump.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/go-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/go-up.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/help-about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/help-about.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/help-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/help-browser.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/help-contents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/help-contents.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/languages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/languages.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/media-record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/media-record.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/process-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/process-stop.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/repeat.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/set-language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/set-language.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/tab-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/tab-close.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/tab-detach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/tab-detach.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/tab-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/tab-new.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/text-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/text-wrap.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/utilities-terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/utilities-terminal.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/view-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/view-close.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/view-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/view-filter.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/view-split-top-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/view-split-top-bottom.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/16x16/whole-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/16x16/whole-window.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/32x32/preferences-desktop-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/32x32/preferences-desktop-font.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-dark-nedit/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-dark-nedit/index.theme -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/application-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/application-exit.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/arrow-left.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/bookmark-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/bookmark-new.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/dialog-cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/dialog-cancel.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/dialog-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/dialog-close.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/dialog-ok-apply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/dialog-ok-apply.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/dialog-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/dialog-ok.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/document-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/document-close.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/document-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/document-new.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/document-open-recent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/document-open-recent.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/document-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/document-open.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/document-print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/document-print.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/document-revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/document-revert.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/document-save-as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/document-save-as.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/document-save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/document-save.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-copy.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-cut.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-delete.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-find-replace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-find-replace.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-find.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-paste.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-redo.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-select-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-select-all.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-select.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/edit-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/edit-undo.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/folder-documents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/folder-documents.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/format-indent-less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/format-indent-less.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/format-indent-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/format-indent-more.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/format-text-lowercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/format-text-lowercase.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/format-text-uppercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/format-text-uppercase.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/go-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/go-down.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/go-jump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/go-jump.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/go-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/go-up.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/help-about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/help-about.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/help-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/help-browser.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/help-contents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/help-contents.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/languages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/languages.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/media-record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/media-record.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/process-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/process-stop.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/repeat.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/set-language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/set-language.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/tab-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/tab-close.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/tab-detach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/tab-detach.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/tab-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/tab-new.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/text-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/text-wrap.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/utilities-terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/utilities-terminal.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/view-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/view-close.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/view-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/view-filter.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/view-split-top-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/view-split-top-bottom.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/16x16/whole-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/16x16/whole-window.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/32x32/preferences-desktop-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/32x32/preferences-desktop-font.svg -------------------------------------------------------------------------------- /src/res/icons/breeze-nedit/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/breeze-nedit/index.theme -------------------------------------------------------------------------------- /src/res/icons/nedit/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/icons/nedit/index.theme -------------------------------------------------------------------------------- /src/res/nedit-ng.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/nedit-ng.ico -------------------------------------------------------------------------------- /src/res/nedit-ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/nedit-ng.png -------------------------------------------------------------------------------- /src/res/nedit-ng.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/nedit-ng.qrc -------------------------------------------------------------------------------- /src/res/nedit-ng.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/nedit-ng.rc -------------------------------------------------------------------------------- /src/res/nedit-ng.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/nedit-ng/HEAD/src/res/nedit-ng.xpm --------------------------------------------------------------------------------