github zed-industries/zed v0.46.0

latest releases: nightly, collab-production, collab-staging...
22 months ago
  • Added handling of .gitignore files in directories containing the current project (#85)

  • Added support for formatting via an external command (#91). The format_on_save setting has been changed to support the following options:

    • Disable format on save:
    {
        "format_on_save": "off"
    }
    • Enable format on save via the language server (default):
    {
        "format_on_save": "language_server"
    }
    • Enable format on save via an external command
    {
        "format_on_save": {
            "external": {
                "command": "prettier",
                "arguments": [
                    "--stdin-filepath",
                    "{buffer_path}"
                ]
            }
        }
    }
  • Added 'back' and 'forward' buttons for accessing pane's navigation histories (#38)

Don't miss a new zed release

NewReleases is sending notifications on new releases.