mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 04:00:36 +00:00
feat: Add custom URL support for the /bug command (#1017)
This commit is contained in:
parent
d5c6bb9740
commit
643bdf31d5
6 changed files with 79 additions and 7 deletions
|
|
@ -7,7 +7,11 @@
|
|||
import * as fs from 'fs';
|
||||
import * as path from 'path';
|
||||
import { homedir } from 'os';
|
||||
import { MCPServerConfig, getErrorMessage } from '@gemini-cli/core';
|
||||
import {
|
||||
MCPServerConfig,
|
||||
getErrorMessage,
|
||||
BugCommandSettings,
|
||||
} from '@gemini-cli/core';
|
||||
import stripJsonComments from 'strip-json-comments';
|
||||
import { DefaultLight } from '../ui/themes/default-light.js';
|
||||
import { DefaultDark } from '../ui/themes/default.js';
|
||||
|
|
@ -40,6 +44,7 @@ export interface Settings {
|
|||
telemetry?: boolean;
|
||||
telemetryOtlpEndpoint?: string;
|
||||
preferredEditor?: string;
|
||||
bugCommand?: BugCommandSettings;
|
||||
|
||||
// Git-aware file filtering settings
|
||||
fileFiltering?: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue