@@ -235,7 +235,7 @@ export default defineComponent({
235235 keys: [CtrlCmd , Alt , ' ArrowLeft' ],
236236 forUser: true ,
237237 forMcp: true ,
238- mcpDescription: ' Switch to left tab. No args.' ,
238+ mcpDescription: ' Switch to left tab. No args. No return. ' ,
239239 handler () {
240240 const prev = findTab (- 1 )
241241 prev && switchTab (prev )
@@ -247,7 +247,7 @@ export default defineComponent({
247247 description: t (' command-desc.file-tabs_switch-right' ),
248248 forUser: true ,
249249 forMcp: true ,
250- mcpDescription: ' Switch to right tab. No args.' ,
250+ mcpDescription: ' Switch to right tab. No args. No return. ' ,
251251 handler () {
252252 const next = findTab (1 )
253253 next && switchTab (next )
@@ -261,7 +261,7 @@ export default defineComponent({
261261 handler: closeCurrent ,
262262 forUser: true ,
263263 forMcp: true ,
264- mcpDescription: ' Close current tab. No args.' ,
264+ mcpDescription: ' Close current tab. No args. No return. ' ,
265265 keys: isElectron ? [CtrlCmd , ' w' ] : [CtrlCmd , Alt , ' w' ]
266266 })
267267
@@ -270,7 +270,7 @@ export default defineComponent({
270270 description: t (' command-desc.file-tabs_search-tabs' ),
271271 forUser: true ,
272272 forMcp: true ,
273- mcpDescription: ' Search tabs. No args.' ,
273+ mcpDescription: ' Search tabs. No args. No return. ' ,
274274 handler () {
275275 refTabs .value ?.showQuickFilter ()
276276 },
@@ -282,7 +282,7 @@ export default defineComponent({
282282 description: t (' command-desc.file-tabs_show-welcome' ),
283283 forUser: true ,
284284 forMcp: true ,
285- mcpDescription: ' Show welcome page. No args.' ,
285+ mcpDescription: ' Show welcome page. No args. No return. ' ,
286286 handler () {
287287 switchDoc (null )
288288 },
0 commit comments