summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2024-02-08Display paths properlypatch_formatWilfred Hughes
2024-02-08Pass lhs_path and rhs_path in DiffResultWilfred Hughes
2024-02-08Simplify hunk headerWilfred Hughes
2024-02-08Fix overflowsWilfred Hughes
2024-02-08Fix context printingWilfred Hughes
2024-02-08Proper context calculationWilfred Hughes
2024-02-08Improve headers and gutterWilfred Hughes
2024-02-08Basic mockWilfred Hughes
2024-02-08wip patch modeWilfred Hughes
2024-02-08Simplify description of manualWilfred Hughes
2024-02-08Silence a clippy warningWilfred Hughes
2024-02-08Prefer implementing Display over a custom .display() methodWilfred Hughes
2024-02-06Add 'hunk' to the glossaryWilfred Hughes
2024-02-010.55 is releasedWilfred Hughes
2024-01-30cargo fmt0.55.0Wilfred Hughes
2024-01-30Mention #570 in changelogWilfred Hughes
2024-01-30Use XML file headers as language detection hintsWilfred Hughes
Fixes #630
2024-01-29Add comment to language detection logicWilfred Hughes
2024-01-29Merge pull request #627 from gotcha/patch-1Wilfred Hughes
ZCML is XML
2024-01-29ZCML is XMLGodefroid Chapelle
Zope and Plone ZCML (Zope Configuration Markup Language) is XML.
2024-01-28Update to latest tree-sitterWilfred Hughes
Benchmarks are unchanged. Fixes #570
2024-01-28Increase MSRV to 1.65Wilfred Hughes
See discussion in #570
2024-01-28Add VHDL to changelogWilfred Hughes
2024-01-28Merge pull request #618 from arbrauns/tree-sitter-vhdlWilfred Hughes
Add tree-sitter-vhdl
2024-01-28Merge pull request #619 from arbrauns/manual-new-parser-fixWilfred Hughes
manual: fix instructions for adding new parser
2024-01-28Remove macro from Objective-C sample file so it parses fullyWilfred Hughes
2024-01-09Add tree-sitter-vhdlArmin Brauns
2024-01-08manual: fix instructions for adding new parserArmin Brauns
The `LANG_*` lists were removed and replaced with functions in 4d85b5c15e60e5cfc396a35b3686df4d7210a925.
2024-01-08Add 'vendored_parsers/tree-sitter-vhdl/' from commit ↵Armin Brauns
'b863231107ef4471ad007a2405ef319875da5b4e' git-subtree-dir: vendored_parsers/tree-sitter-vhdl git-subtree-mainline: 2d61aefb84d243c06b8d7de47f08ddbc694840f3 git-subtree-split: b863231107ef4471ad007a2405ef319875da5b4e
2024-01-07Fix tab replacement in single-column displayWilfred Hughes
Fixes #617
2024-01-07Fix spellingWilfred Hughes
2024-01-07Update integration test for new tab widthWilfred Hughes
2024-01-07Change default tab width to 4Wilfred Hughes
This is more consistent with web UIs like GitHub, so I think it's a better default.
2024-01-07Add support for Objective-CWilfred Hughes
Closes #600 Co-authored-by: Nick Moore <nick@pilotmoon.com>
2024-01-07Add 'vendored_parsers/tree-sitter-objc/' from commit ↵Wilfred Hughes
'62e61b6f5c0289c376d61a8c91faf6435cde9012' git-subtree-dir: vendored_parsers/tree-sitter-objc git-subtree-mainline: 8eebc241652917779084ed856dcb2f8339a084a6 git-subtree-split: 62e61b6f5c0289c376d61a8c91faf6435cde9012
2024-01-07Roll versionWilfred Hughes
2024-01-05Update link to manual0.54.0Wilfred Hughes
2024-01-05Update changelog for previous commitWilfred Hughes
2024-01-05Merge pull request #614 from yuja/push-utqlvwnvuwrlWilfred Hughes
Fix dir-diff paths merging to not add duplicated entries from remainder
2024-01-05Remove bool_to_int_with_if clippy configWilfred Hughes
This doesn't exist in Rust 1.63 (it was added in 1.65) and 1.67 moved it to allow-by-default anyway.
2024-01-04Happy new year!Wilfred Hughes
2024-01-04Improve meta tags: description, browser colourWilfred Hughes
2024-01-02Fix dir-diff paths merging to not add duplicated entries from remainderYuya Nishihara
If lhs_paths and rhs_paths are ["a", "c"] and ["a", "b", "c"] respectively, the loop ends with paths = ["a", "c", "b"], i = j = 2. We still need to deduplicate "c" from the rhs_paths. .into_iter() can't be used anymore since the seen set still borrows the paths.
2023-12-30Report permission changesWilfred Hughes
Fixes #605
2023-12-29More use of renamed over extra_infoWilfred Hughes
2023-12-29Clarify field that is a path description, not a pathWilfred Hughes
2023-12-29Simlify pattern matchesWilfred Hughes
2023-12-29When called with a single path, require conflict markersWilfred Hughes
Fixes #585
2023-12-28Treat strict types in Haskell as atomsWilfred Hughes
This isn't ideal: it prevents a finegrained diff of syntax within a type, but it beats claiming that the code is unchanged. Fixes #607
2023-12-28Tweak container paddingWilfred Hughes