mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 04:30:48 +00:00
Add Zed Editor to Eidtor List (#1372)
This commit is contained in:
parent
9f5a625730
commit
324715ee8b
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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue