Add OpenIn dropdown behavior to files editor OpenIn button (#581)

* style: use outlined Open In file transfer icon

* feat: add Open In dropdown to files editor toolbar
This commit is contained in:
Iuliia Ivashko
2026-03-03 02:05:56 +02:00
committed by GitHub
parent 11b995d7bd
commit 16439d343a
4 changed files with 438 additions and 251 deletions
+1
View File
@@ -30,6 +30,7 @@ export const OPEN_IN_APPS: OpenInApp[] = [
];
export const DEFAULT_OPEN_IN_APP_ID = 'finder';
export const OPEN_IN_ALWAYS_AVAILABLE_APP_IDS = new Set(['finder', 'terminal']);
export const OPEN_DIRECTORY_APP_IDS = new Set(['finder', 'terminal', 'iterm2', 'ghostty']);
export const getOpenInAppById = (id: string | null | undefined): OpenInApp | null => {