├── .config └── nextest.toml ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── CD.yml │ ├── CI.yml │ ├── coverage.yml │ └── post-deploy.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── CODEOWNERS ├── Cargo.lock ├── Cargo.toml ├── Cross.toml ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── rust_example.png ├── rust_example_logs.png └── sample_config.json5 ├── bin ├── git-diffsitter └── update-grammars.sh ├── clippy.toml ├── deployment ├── brew_packager.py ├── git-archive-all.bash └── macos │ └── homebrew │ └── homebrew_formula.rb.template ├── dev_scripts ├── build_with_sanitizer.bash └── update_dependencies.bash ├── docs ├── CODE_OF_CONDUCT.md └── CONTRIBUTING.md ├── resources └── test_configs │ ├── empty_config.toml │ ├── empty_dict.json5 │ ├── partial_section_1.json │ ├── partial_section_1.toml │ ├── partial_section_2.json │ └── partial_section_3.json ├── rustfmt.toml ├── src ├── bin │ ├── diffsitter.rs │ ├── diffsitter_completions.rs │ └── diffsitter_utils.rs ├── cli.rs ├── config.rs ├── console_utils.rs ├── diff.rs ├── figment_utils.rs ├── input_processing.rs ├── lib.rs ├── neg_idx_vec.rs ├── parse.rs └── render │ ├── json.rs │ ├── mod.rs │ └── unified.rs ├── test_data ├── medium │ ├── cpp │ │ ├── a.cpp │ │ └── b.cpp │ └── rust │ │ ├── a.rs │ │ └── b.rs └── short │ ├── go │ ├── a.go │ └── b.go │ ├── markdown │ ├── a.md │ └── b.md │ ├── python │ ├── a.py │ └── b.py │ └── rust │ ├── a.rs │ └── b.rs └── tests ├── regression_test.rs └── snapshots ├── regression_test__tests__medium_cpp_false.snap ├── regression_test__tests__medium_cpp_split_graphames_false_strip_whitespace_true.snap ├── regression_test__tests__medium_cpp_split_graphames_true_strip_whitespace_true.snap ├── regression_test__tests__medium_cpp_split_graphemes_false_strip_whitespace_true.snap ├── regression_test__tests__medium_cpp_split_graphemes_true_strip_whitespace_true.snap ├── regression_test__tests__medium_cpp_true.snap ├── regression_test__tests__medium_rust_false.snap ├── regression_test__tests__medium_rust_split_graphames_false_strip_whitespace_false.snap ├── regression_test__tests__medium_rust_split_graphames_true_strip_whitespace_false.snap ├── regression_test__tests__medium_rust_split_graphemes_false_strip_whitespace_false.snap ├── regression_test__tests__medium_rust_split_graphemes_true_strip_whitespace_false.snap ├── regression_test__tests__medium_rust_true.snap ├── regression_test__tests__short_go_split_graphames_true_strip_whitespace_true.snap ├── regression_test__tests__short_go_split_graphemes_true_strip_whitespace_true.snap ├── regression_test__tests__short_go_true.snap ├── regression_test__tests__short_markdown_false.snap ├── regression_test__tests__short_markdown_split_graphemes_false_strip_whitespace_true.snap ├── regression_test__tests__short_markdown_split_graphemes_true_strip_whitespace_true.snap ├── regression_test__tests__short_python_split_graphames_true_strip_whitespace_true.snap ├── regression_test__tests__short_python_split_graphemes_true_strip_whitespace_true.snap ├── regression_test__tests__short_python_true.snap ├── regression_test__tests__short_rust_split_graphames_true_strip_whitespace_true.snap ├── regression_test__tests__short_rust_split_graphemes_true_strip_whitespace_true.snap └── regression_test__tests__short_rust_true.snap /.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.config/nextest.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.md 3 | assets/ 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.github/workflows/CD.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/post-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.github/workflows/post-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Global owners 2 | * @afnanenayet 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Cross.toml: -------------------------------------------------------------------------------- 1 | [build.env] 2 | volumes = ["BUILD_DIR"] 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/README.md -------------------------------------------------------------------------------- /assets/rust_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/assets/rust_example.png -------------------------------------------------------------------------------- /assets/rust_example_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/assets/rust_example_logs.png -------------------------------------------------------------------------------- /assets/sample_config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/assets/sample_config.json5 -------------------------------------------------------------------------------- /bin/git-diffsitter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/bin/git-diffsitter -------------------------------------------------------------------------------- /bin/update-grammars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/bin/update-grammars.sh -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- 1 | single-char-binding-names-threshold = 10 2 | -------------------------------------------------------------------------------- /deployment/brew_packager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/deployment/brew_packager.py -------------------------------------------------------------------------------- /deployment/git-archive-all.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/deployment/git-archive-all.bash -------------------------------------------------------------------------------- /deployment/macos/homebrew/homebrew_formula.rb.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/deployment/macos/homebrew/homebrew_formula.rb.template -------------------------------------------------------------------------------- /dev_scripts/build_with_sanitizer.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/dev_scripts/build_with_sanitizer.bash -------------------------------------------------------------------------------- /dev_scripts/update_dependencies.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/dev_scripts/update_dependencies.bash -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /resources/test_configs/empty_config.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/test_configs/empty_dict.json5: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /resources/test_configs/partial_section_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/resources/test_configs/partial_section_1.json -------------------------------------------------------------------------------- /resources/test_configs/partial_section_1.toml: -------------------------------------------------------------------------------- 1 | [formatting.unified] 2 | [[addition]] 3 | regular-foreground = "green" 4 | -------------------------------------------------------------------------------- /resources/test_configs/partial_section_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/resources/test_configs/partial_section_2.json -------------------------------------------------------------------------------- /resources/test_configs/partial_section_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/resources/test_configs/partial_section_3.json -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | edition = "2021" 2 | -------------------------------------------------------------------------------- /src/bin/diffsitter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/bin/diffsitter.rs -------------------------------------------------------------------------------- /src/bin/diffsitter_completions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/bin/diffsitter_completions.rs -------------------------------------------------------------------------------- /src/bin/diffsitter_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/bin/diffsitter_utils.rs -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/console_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/console_utils.rs -------------------------------------------------------------------------------- /src/diff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/diff.rs -------------------------------------------------------------------------------- /src/figment_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/figment_utils.rs -------------------------------------------------------------------------------- /src/input_processing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/input_processing.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/neg_idx_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/neg_idx_vec.rs -------------------------------------------------------------------------------- /src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/parse.rs -------------------------------------------------------------------------------- /src/render/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/render/json.rs -------------------------------------------------------------------------------- /src/render/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/render/mod.rs -------------------------------------------------------------------------------- /src/render/unified.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/src/render/unified.rs -------------------------------------------------------------------------------- /test_data/medium/cpp/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/medium/cpp/a.cpp -------------------------------------------------------------------------------- /test_data/medium/cpp/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/medium/cpp/b.cpp -------------------------------------------------------------------------------- /test_data/medium/rust/a.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/medium/rust/a.rs -------------------------------------------------------------------------------- /test_data/medium/rust/b.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/medium/rust/b.rs -------------------------------------------------------------------------------- /test_data/short/go/a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/short/go/a.go -------------------------------------------------------------------------------- /test_data/short/go/b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/short/go/b.go -------------------------------------------------------------------------------- /test_data/short/markdown/a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/short/markdown/a.md -------------------------------------------------------------------------------- /test_data/short/markdown/b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/short/markdown/b.md -------------------------------------------------------------------------------- /test_data/short/python/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/short/python/a.py -------------------------------------------------------------------------------- /test_data/short/python/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/short/python/b.py -------------------------------------------------------------------------------- /test_data/short/rust/a.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/short/rust/a.rs -------------------------------------------------------------------------------- /test_data/short/rust/b.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/test_data/short/rust/b.rs -------------------------------------------------------------------------------- /tests/regression_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/regression_test.rs -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_cpp_false.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_cpp_false.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_cpp_split_graphames_false_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_cpp_split_graphames_false_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_cpp_split_graphames_true_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_cpp_split_graphames_true_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_cpp_split_graphemes_false_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_cpp_split_graphemes_false_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_cpp_split_graphemes_true_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_cpp_split_graphemes_true_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_cpp_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_cpp_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_rust_false.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_rust_false.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_rust_split_graphames_false_strip_whitespace_false.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_rust_split_graphames_false_strip_whitespace_false.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_rust_split_graphames_true_strip_whitespace_false.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_rust_split_graphames_true_strip_whitespace_false.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_rust_split_graphemes_false_strip_whitespace_false.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_rust_split_graphemes_false_strip_whitespace_false.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_rust_split_graphemes_true_strip_whitespace_false.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_rust_split_graphemes_true_strip_whitespace_false.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__medium_rust_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__medium_rust_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_go_split_graphames_true_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_go_split_graphames_true_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_go_split_graphemes_true_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_go_split_graphemes_true_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_go_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_go_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_markdown_false.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_markdown_false.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_markdown_split_graphemes_false_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_markdown_split_graphemes_false_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_markdown_split_graphemes_true_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_markdown_split_graphemes_true_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_python_split_graphames_true_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_python_split_graphames_true_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_python_split_graphemes_true_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_python_split_graphemes_true_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_python_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_python_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_rust_split_graphames_true_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_rust_split_graphames_true_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_rust_split_graphemes_true_strip_whitespace_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_rust_split_graphemes_true_strip_whitespace_true.snap -------------------------------------------------------------------------------- /tests/snapshots/regression_test__tests__short_rust_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afnanenayet/diffsitter/HEAD/tests/snapshots/regression_test__tests__short_rust_true.snap --------------------------------------------------------------------------------