Add Zed Editor to Eidtor List (#1372)

This commit is contained in:
Scott Densmore
2025-06-23 23:32:09 -07:00
committed by GitHub
parent c3083efa6d
commit 1a57c3d61b
3 changed files with 144 additions and 110 deletions
@@ -17,6 +17,7 @@ export interface EditorDisplay {
}
export const EDITOR_DISPLAY_NAMES: Record<EditorType, string> = {
zed: 'Zed',
vscode: 'VS Code',
windsurf: 'Windsurf',
cursor: 'Cursor',
@@ -27,7 +28,13 @@ class EditorSettingsManager {
private readonly availableEditors: EditorDisplay[];
constructor() {
const editorTypes: EditorType[] = ['vscode', 'windsurf', 'cursor', 'vim'];
const editorTypes: EditorType[] = [
'zed',
'vscode',
'windsurf',
'cursor',
'vim',
];
this.availableEditors = [
{
name: 'None',