mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-05 15:31:27 +00:00
add settings command and update extension examples
This commit is contained in:
parent
2c22961f92
commit
ba14e9e531
19 changed files with 708 additions and 24 deletions
|
|
@ -13,6 +13,7 @@ import { disableCommand } from './extensions/disable.js';
|
|||
import { enableCommand } from './extensions/enable.js';
|
||||
import { linkCommand } from './extensions/link.js';
|
||||
import { newCommand } from './extensions/new.js';
|
||||
import { settingsCommand } from './extensions/settings.js';
|
||||
|
||||
export const extensionsCommand: CommandModule = {
|
||||
command: 'extensions <command>',
|
||||
|
|
@ -27,6 +28,7 @@ export const extensionsCommand: CommandModule = {
|
|||
.command(enableCommand)
|
||||
.command(linkCommand)
|
||||
.command(newCommand)
|
||||
.command(settingsCommand)
|
||||
.demandCommand(1, 'You need at least one command before continuing.')
|
||||
.version(false),
|
||||
handler: () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue