vscode 工具栏已溢出调试器工具

vfwfrxfs  于 7个月前  发布在  Vscode
关注(0)|答案(5)|浏览(54)

类型:Bug
当我启动调试器工具栏时,它已经被VS Code工具栏溢出。
VS Code版本:Code 1.85.0 (af28b32, 2023-12-06T20:48:09.019Z)
操作系统版本:Windows_NT x64 10.0.19045
模式:
系统信息
| 项目 | 值 |
| ------------ | ------------ |
| CPUs | Intel(R) Core(TM) i5-10400 CPU @ 2.90GHz (12 x 2904) |
| 负载(平均值) | undefined |
| 内存(系统) | 15.79GB (2.63GB free) |
| 进程参数 | --crash-reporter-id 046bf447-79e2-46a5-9a1d-cbb2f3feac4f |
| 屏幕阅读器 | no |
| 虚拟机 | 0%

hjzp0vay

hjzp0vay1#

我以前没见过这种情况。最近才开始发生的吗?
这种情况总是发生吗?

beq87vna

beq87vna2#

调试工具栏的位置是错误的,它应该在标题栏下方。窗口控件是一个单独的错误,但在这个情况下不应该有影响。

2exbekwf

2exbekwf3#

@giapdong can you provide steps that got the toolbar into that location?

sqougxex

sqougxex4#

这个问题已经自动关闭,因为它需要更多信息且最近没有活动。请参阅我们的issue reporting指南。
快乐编码!

agxfikkp

agxfikkp5#

在我的脑海中,这个问题最近才发生,有一些步骤可以运行:
bandicam.2024-01-18.15-29-55-030.mp4
有关更多信息,可能有所帮助
PHP版本

$ php --version
PHP 8.1.10 (cli) (built: Aug 30 2022 18:05:49) (ZTS Visual C++ 2019 x64)
Copyright (c) The PHP Group
Zend Engine v4.1.10, Copyright (c) Zend Technologies
    with Xdebug v3.1.5, Copyright (c) 2002-2022, by Derick Rethans

.vscode/launch.json

{
	// Use IntelliSense to learn about possible attributes.
	// Hover to view descriptions of existing attributes.
	// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
	"version": "0.2.0",
	"configurations": [
		{
			"name": "Listen for Xdebug",
			"type": "php",
			"request": "launch",
			"port": 9003
		},
		{
			"name": "Launch currently open script",
			"type": "php",
			"request": "launch",
			"program": "${file}",
			"cwd": "${fileDirname}",
			"port": 0,
			"runtimeArgs": [
				"-dxdebug.start_with_request=yes"
			],
			"env": {
				"XDEBUG_MODE": "debug,develop",
				"XDEBUG_CONFIG": "client_port=${port}"
			}
		},
		{
			"name": "Launch Built-in web server",
			"type": "php",
			"request": "launch",
			"runtimeArgs": [
				"-dxdebug.mode=debug",
				"-dxdebug.start_with_request=yes",
				"-S",
				"localhost:0"
			],
			"program": "",
			"cwd": "${workspaceRoot}",
			"port": 19003,
			"serverReadyAction": {
				"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
				"uriFormat": "http://localhost:%s",
				"action": "openExternally"
			}
		}
	]
}

相关问题