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 9f5a625730
commit 324715ee8b
3 changed files with 144 additions and 110 deletions

View File

@@ -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',