ZIm/docs/src/languages/diff.md
2024-10-15 16:02:12 -04:00

694 B

Diff

Diff support is available natively in Zed.

Configuration

Zed will not attempt to format diff files and has remove_trailing_whitespace_on_save and ensure-final-newline-on-save set to false.

Zed will automatically recognize files with patch and diff extensions as Diff files. To recognize other extensions, add them to file_types in your Zed settings.json:

  "file_types": {
    "Diff": ["dif"]
  },