mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
fix(vscode-ide-companion): improve message logging and permission handling
- Increase message logging truncation limit from 500 to 1500 characters - Fix permission option mapping logic for reject_once/cancel options - Add TODO comments for diff accept/cancel responses during permission requests Resolves issues with permission handling and improves debugging capabilities.
This commit is contained in:
@@ -155,4 +155,21 @@
|
||||
background-color: var(--app-qwen-clay-button-orange);
|
||||
color: var(--app-qwen-ivory);
|
||||
}
|
||||
|
||||
/*
|
||||
* File path styling inside tool call content
|
||||
* Applies to: .toolcall-content-wrapper .file-link-path
|
||||
* - Use monospace editor font
|
||||
* - Slightly smaller size
|
||||
* - Link color
|
||||
* - Tighten top alignment and allow aggressive breaking for long paths
|
||||
*/
|
||||
.toolcall-content-wrapper .file-link-path {
|
||||
/* Tailwind utilities where possible */
|
||||
@apply text-[0.85em] pt-px break-all min-w-0;
|
||||
/* Not covered by Tailwind defaults: use CSS vars / properties */
|
||||
font-family: var(--app-monospace-font-family);
|
||||
color: var(--app-link-color);
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user