mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 08:47:44 +00:00
Add Zed Editor to Eidtor List (#1372)
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user