├── .cargo └── config.toml ├── .clippy.toml ├── .github ├── renovate.json5 └── workflows │ ├── audit.yml │ ├── ci.yml │ ├── committed.yml │ ├── pre-commit.yml │ ├── release.yml │ ├── rust-next.yml │ └── spelling.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches └── bench.rs ├── committed.toml ├── deny.toml ├── examples ├── custom_error.rs ├── custom_error.svg ├── custom_level.rs ├── custom_level.svg ├── elide_header.rs ├── elide_header.svg ├── expected_type.rs ├── expected_type.svg ├── footer.rs ├── footer.svg ├── format.rs ├── format.svg ├── highlight_message.rs ├── highlight_message.svg ├── highlight_source.rs ├── highlight_source.svg ├── id_hyperlink.rs ├── id_hyperlink.svg ├── multi_suggestion.rs ├── multi_suggestion.svg ├── multislice.rs ├── multislice.svg ├── struct_name_as_context.rs └── struct_name_as_context.svg ├── src ├── level.rs ├── lib.rs ├── renderer │ ├── margin.rs │ ├── mod.rs │ ├── render.rs │ ├── source_map.rs │ ├── styled_buffer.rs │ └── stylesheet.rs └── snippet.rs ├── tests ├── color │ ├── ann_eof.ascii.term.svg │ ├── ann_eof.rs │ ├── ann_eof.unicode.term.svg │ ├── ann_insertion.ascii.term.svg │ ├── ann_insertion.rs │ ├── ann_insertion.unicode.term.svg │ ├── ann_multiline.ascii.term.svg │ ├── ann_multiline.rs │ ├── ann_multiline.unicode.term.svg │ ├── ann_multiline2.ascii.term.svg │ ├── ann_multiline2.rs │ ├── ann_multiline2.unicode.term.svg │ ├── ann_removed_nl.ascii.term.svg │ ├── ann_removed_nl.rs │ ├── ann_removed_nl.unicode.term.svg │ ├── ensure_emoji_highlight_width.ascii.term.svg │ ├── ensure_emoji_highlight_width.rs │ ├── ensure_emoji_highlight_width.unicode.term.svg │ ├── first_snippet_is_primary.ascii.term.svg │ ├── first_snippet_is_primary.rs │ ├── first_snippet_is_primary.unicode.term.svg │ ├── fold_ann_multiline.ascii.term.svg │ ├── fold_ann_multiline.rs │ ├── fold_ann_multiline.unicode.term.svg │ ├── fold_bad_origin_line.ascii.term.svg │ ├── fold_bad_origin_line.rs │ ├── fold_bad_origin_line.unicode.term.svg │ ├── fold_leading.ascii.term.svg │ ├── fold_leading.rs │ ├── fold_leading.unicode.term.svg │ ├── fold_trailing.ascii.term.svg │ ├── fold_trailing.rs │ ├── fold_trailing.unicode.term.svg │ ├── highlight_duplicated_diff_lines.ascii.term.svg │ ├── highlight_duplicated_diff_lines.rs │ ├── highlight_duplicated_diff_lines.unicode.term.svg │ ├── highlight_source.ascii.term.svg │ ├── highlight_source.rs │ ├── highlight_source.unicode.term.svg │ ├── issue_9.ascii.term.svg │ ├── issue_9.rs │ ├── issue_9.unicode.term.svg │ ├── main.rs │ ├── multiline_removal_suggestion.ascii.term.svg │ ├── multiline_removal_suggestion.rs │ ├── multiline_removal_suggestion.unicode.term.svg │ ├── multiple_annotations.ascii.term.svg │ ├── multiple_annotations.rs │ ├── multiple_annotations.unicode.term.svg │ ├── multiple_highlight_duplicated.ascii.term.svg │ ├── multiple_highlight_duplicated.rs │ ├── multiple_highlight_duplicated.unicode.term.svg │ ├── multiple_multiline_removal.ascii.term.svg │ ├── multiple_multiline_removal.rs │ ├── multiple_multiline_removal.unicode.term.svg │ ├── primary_title_second_group.ascii.term.svg │ ├── primary_title_second_group.rs │ ├── primary_title_second_group.unicode.term.svg │ ├── simple.ascii.term.svg │ ├── simple.rs │ ├── simple.unicode.term.svg │ ├── strip_line.ascii.term.svg │ ├── strip_line.rs │ ├── strip_line.unicode.term.svg │ ├── strip_line_char.ascii.term.svg │ ├── strip_line_char.rs │ ├── strip_line_char.unicode.term.svg │ ├── strip_line_non_ws.ascii.term.svg │ ├── strip_line_non_ws.rs │ ├── strip_line_non_ws.unicode.term.svg │ ├── styled_title.ascii.term.svg │ ├── styled_title.rs │ └── styled_title.unicode.term.svg ├── examples.rs ├── formatter.rs └── rustc_tests.rs └── typos.toml /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [resolver] 2 | incompatible-rust-versions = "fallback" 3 | -------------------------------------------------------------------------------- /.clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.clippy.toml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/committed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.github/workflows/committed.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rust-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.github/workflows/rust-next.yml -------------------------------------------------------------------------------- /.github/workflows/spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.github/workflows/spelling.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/benches/bench.rs -------------------------------------------------------------------------------- /committed.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/committed.toml -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/deny.toml -------------------------------------------------------------------------------- /examples/custom_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/custom_error.rs -------------------------------------------------------------------------------- /examples/custom_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/custom_error.svg -------------------------------------------------------------------------------- /examples/custom_level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/custom_level.rs -------------------------------------------------------------------------------- /examples/custom_level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/custom_level.svg -------------------------------------------------------------------------------- /examples/elide_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/elide_header.rs -------------------------------------------------------------------------------- /examples/elide_header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/elide_header.svg -------------------------------------------------------------------------------- /examples/expected_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/expected_type.rs -------------------------------------------------------------------------------- /examples/expected_type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/expected_type.svg -------------------------------------------------------------------------------- /examples/footer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/footer.rs -------------------------------------------------------------------------------- /examples/footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/footer.svg -------------------------------------------------------------------------------- /examples/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/format.rs -------------------------------------------------------------------------------- /examples/format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/format.svg -------------------------------------------------------------------------------- /examples/highlight_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/highlight_message.rs -------------------------------------------------------------------------------- /examples/highlight_message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/highlight_message.svg -------------------------------------------------------------------------------- /examples/highlight_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/highlight_source.rs -------------------------------------------------------------------------------- /examples/highlight_source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/highlight_source.svg -------------------------------------------------------------------------------- /examples/id_hyperlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/id_hyperlink.rs -------------------------------------------------------------------------------- /examples/id_hyperlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/id_hyperlink.svg -------------------------------------------------------------------------------- /examples/multi_suggestion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/multi_suggestion.rs -------------------------------------------------------------------------------- /examples/multi_suggestion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/multi_suggestion.svg -------------------------------------------------------------------------------- /examples/multislice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/multislice.rs -------------------------------------------------------------------------------- /examples/multislice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/multislice.svg -------------------------------------------------------------------------------- /examples/struct_name_as_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/struct_name_as_context.rs -------------------------------------------------------------------------------- /examples/struct_name_as_context.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/examples/struct_name_as_context.svg -------------------------------------------------------------------------------- /src/level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/src/level.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/renderer/margin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/src/renderer/margin.rs -------------------------------------------------------------------------------- /src/renderer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/src/renderer/mod.rs -------------------------------------------------------------------------------- /src/renderer/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/src/renderer/render.rs -------------------------------------------------------------------------------- /src/renderer/source_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/src/renderer/source_map.rs -------------------------------------------------------------------------------- /src/renderer/styled_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/src/renderer/styled_buffer.rs -------------------------------------------------------------------------------- /src/renderer/stylesheet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/src/renderer/stylesheet.rs -------------------------------------------------------------------------------- /src/snippet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/src/snippet.rs -------------------------------------------------------------------------------- /tests/color/ann_eof.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_eof.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/ann_eof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_eof.rs -------------------------------------------------------------------------------- /tests/color/ann_eof.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_eof.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/ann_insertion.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_insertion.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/ann_insertion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_insertion.rs -------------------------------------------------------------------------------- /tests/color/ann_insertion.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_insertion.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/ann_multiline.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_multiline.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/ann_multiline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_multiline.rs -------------------------------------------------------------------------------- /tests/color/ann_multiline.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_multiline.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/ann_multiline2.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_multiline2.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/ann_multiline2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_multiline2.rs -------------------------------------------------------------------------------- /tests/color/ann_multiline2.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_multiline2.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/ann_removed_nl.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_removed_nl.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/ann_removed_nl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_removed_nl.rs -------------------------------------------------------------------------------- /tests/color/ann_removed_nl.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ann_removed_nl.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/ensure_emoji_highlight_width.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ensure_emoji_highlight_width.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/ensure_emoji_highlight_width.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ensure_emoji_highlight_width.rs -------------------------------------------------------------------------------- /tests/color/ensure_emoji_highlight_width.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/ensure_emoji_highlight_width.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/first_snippet_is_primary.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/first_snippet_is_primary.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/first_snippet_is_primary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/first_snippet_is_primary.rs -------------------------------------------------------------------------------- /tests/color/first_snippet_is_primary.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/first_snippet_is_primary.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/fold_ann_multiline.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_ann_multiline.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/fold_ann_multiline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_ann_multiline.rs -------------------------------------------------------------------------------- /tests/color/fold_ann_multiline.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_ann_multiline.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/fold_bad_origin_line.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_bad_origin_line.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/fold_bad_origin_line.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_bad_origin_line.rs -------------------------------------------------------------------------------- /tests/color/fold_bad_origin_line.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_bad_origin_line.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/fold_leading.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_leading.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/fold_leading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_leading.rs -------------------------------------------------------------------------------- /tests/color/fold_leading.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_leading.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/fold_trailing.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_trailing.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/fold_trailing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_trailing.rs -------------------------------------------------------------------------------- /tests/color/fold_trailing.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/fold_trailing.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/highlight_duplicated_diff_lines.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/highlight_duplicated_diff_lines.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/highlight_duplicated_diff_lines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/highlight_duplicated_diff_lines.rs -------------------------------------------------------------------------------- /tests/color/highlight_duplicated_diff_lines.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/highlight_duplicated_diff_lines.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/highlight_source.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/highlight_source.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/highlight_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/highlight_source.rs -------------------------------------------------------------------------------- /tests/color/highlight_source.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/highlight_source.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/issue_9.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/issue_9.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/issue_9.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/issue_9.rs -------------------------------------------------------------------------------- /tests/color/issue_9.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/issue_9.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/main.rs -------------------------------------------------------------------------------- /tests/color/multiline_removal_suggestion.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiline_removal_suggestion.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/multiline_removal_suggestion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiline_removal_suggestion.rs -------------------------------------------------------------------------------- /tests/color/multiline_removal_suggestion.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiline_removal_suggestion.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/multiple_annotations.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiple_annotations.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/multiple_annotations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiple_annotations.rs -------------------------------------------------------------------------------- /tests/color/multiple_annotations.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiple_annotations.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/multiple_highlight_duplicated.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiple_highlight_duplicated.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/multiple_highlight_duplicated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiple_highlight_duplicated.rs -------------------------------------------------------------------------------- /tests/color/multiple_highlight_duplicated.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiple_highlight_duplicated.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/multiple_multiline_removal.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiple_multiline_removal.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/multiple_multiline_removal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiple_multiline_removal.rs -------------------------------------------------------------------------------- /tests/color/multiple_multiline_removal.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/multiple_multiline_removal.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/primary_title_second_group.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/primary_title_second_group.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/primary_title_second_group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/primary_title_second_group.rs -------------------------------------------------------------------------------- /tests/color/primary_title_second_group.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/primary_title_second_group.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/simple.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/simple.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/simple.rs -------------------------------------------------------------------------------- /tests/color/simple.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/simple.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/strip_line.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/strip_line.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/strip_line.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/strip_line.rs -------------------------------------------------------------------------------- /tests/color/strip_line.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/strip_line.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/strip_line_char.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/strip_line_char.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/strip_line_char.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/strip_line_char.rs -------------------------------------------------------------------------------- /tests/color/strip_line_char.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/strip_line_char.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/strip_line_non_ws.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/strip_line_non_ws.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/strip_line_non_ws.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/strip_line_non_ws.rs -------------------------------------------------------------------------------- /tests/color/strip_line_non_ws.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/strip_line_non_ws.unicode.term.svg -------------------------------------------------------------------------------- /tests/color/styled_title.ascii.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/styled_title.ascii.term.svg -------------------------------------------------------------------------------- /tests/color/styled_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/styled_title.rs -------------------------------------------------------------------------------- /tests/color/styled_title.unicode.term.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/color/styled_title.unicode.term.svg -------------------------------------------------------------------------------- /tests/examples.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/examples.rs -------------------------------------------------------------------------------- /tests/formatter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/formatter.rs -------------------------------------------------------------------------------- /tests/rustc_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/tests/rustc_tests.rs -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/annotate-snippets-rs/HEAD/typos.toml --------------------------------------------------------------------------------