From b07389d9f3b1e1c2cf5c275302438061d372a226 Mon Sep 17 00:00:00 2001 From: Aero Date: Thu, 4 Dec 2025 18:38:10 +0800 Subject: [PATCH] macos: Add missing file access entitlements (#43609) Adds `com.apple.security.files.user-selected.read-write` and `com.apple.security.files.downloads.read-write` to zed.entitlements. This resolves an issue where the integrated terminal could not access external drives or user-selected files on macOS, even when "Full Disk Access" was granted. These entitlements are required for the application to properly inherit file access permissions. Release Notes: - Resolves an issue where the integrated terminal could not access external drives or user-selected files on macOS. --- crates/zed/resources/zed.entitlements | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/zed/resources/zed.entitlements b/crates/zed/resources/zed.entitlements index cb4cd3dc692160047ae5012489a350829c4a1ccf..2a16afe7551f433e3f835a2097df61a2e9e86ee1 100644 --- a/crates/zed/resources/zed.entitlements +++ b/crates/zed/resources/zed.entitlements @@ -22,5 +22,9 @@ com.apple.security.personal-information.photos-library + com.apple.security.files.user-selected.read-write + + com.apple.security.files.downloads.read-write +