@@ -73,62 +73,9 @@ function initializeQuickActionHandlers() {
7373}
7474
7575function updateWorkspaceEditor ( tabId ) {
76- if ( ! workspaceMonacoEditor ) return ;
77-
78- const editorContent = {
79- 'tab-claude' : {
80- content : `# Claude Configuration
81-
82- ## Subagents
83- - Researcher: Information gathering specialist
84- - Memory Manager: Context and history management
85-
86- ## Guidelines
87- - Python: PEP 8 compliance, type hints
88- - Code quality: Clean, documented, tested
89-
90- ## MCPs (Model Context Protocols)
91- - Database integration
92- - File system access
93- - API connections` ,
94- language : 'markdown'
95- } ,
96- 'tab-cursor' : {
97- content : `// Cursor/VS Code Configuration
98-
99- {
100- "rules": [
101- "Always use TypeScript for new files",
102- "Prefer functional components in React",
103- "Use meaningful variable names",
104- "Add JSDoc comments for functions"
105- ],
106- "preferences": {
107- "tabSize": 2,
108- "insertSpaces": true,
109- "trimTrailingWhitespace": true
110- },
111- "extensions": [
112- "Prettier",
113- "ESLint",
114- "GitLens",
115- "Auto Rename Tag"
116- ]
117- }` ,
118- language : 'json'
119- }
120- } ;
121-
122- const config = editorContent [ tabId ] ;
123- if ( config ) {
124- workspaceMonacoEditor . setValue ( config . content ) ;
125- monaco . editor . setModelLanguage ( workspaceMonacoEditor . getModel ( ) , config . language ) ;
126- console . log ( "Updated workspace editor:" , config . content ) ;
127- const languageSelect = document . getElementById ( 'workspace-language-select' ) ;
128- if ( languageSelect ) {
129- languageSelect . value = config . language ;
130- }
131- }
76+ // This function is no longer needed as we're using file-based content
77+ // Kept for compatibility but does nothing
78+ return ;
13279}
13380
13481// Export functions for global use
0 commit comments