@@ -5074,6 +5074,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
50745074
50755075 const cfg : SimpleUIConfig = {
50765076 title : 'Project Variables' ,
5077+ ref_id : `<project-variables>:${ prj . getUid ( ) } ` ,
50775078 readonly : true ,
50785079 btns : {
50795080 submit : {
@@ -5392,6 +5393,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
53925393 inheritedArgs = inheritedArgs . trim ( ) ;
53935394
53945395 const ui_cfg : SimpleUIConfig = {
5396+ ref_id : `<file-options>:${ fspath } ` ,
53955397 title : isChinese
53965398 ? `修改编译选项(文件:${ NodePath . basename ( fspath ) } )`
53975399 : `Modify Compiler Options (file: ${ NodePath . basename ( fspath ) } )` ,
@@ -5751,6 +5753,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
57515753 inheritedOptions = inheritedOptions . trim ( ) ;
57525754
57535755 const ui_cfg : SimpleUIConfig = {
5756+ ref_id : `<folder-options>:${ folderpath } ` ,
57545757 title : isChinese
57555758 ? `修改编译选项(目录:${ NodePath . basename ( folderpath ) } )`
57565759 : `Modify Compiler Options (dir: ${ NodePath . basename ( folderpath ) } )` ,
@@ -7349,6 +7352,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
73497352 let toolchainPath = setting . getConfiguration ( ) . get ( toolchainPathSettingName ) || '' ;
73507353
73517354 let cfg : SimpleUIConfig = {
7355+ ref_id : `<toolchain-config>:${ project . getUid ( ) } ` ,
73527356 title : 'Toolchain Configurations' ,
73537357 items : {
73547358 'path' : {
@@ -7358,7 +7362,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
73587362 } ,
73597363 name : 'Toolchain Path' ,
73607364 data : < SimpleUIConfigData_input > {
7361- placeHolder : 'toolchain dir, like: ${userRoot }/.eide/tools/<toolchain_id>' ,
7365+ placeHolder : 'toolchain dir, like: ${userHome }/.eide/tools/<toolchain_id>' ,
73627366 value : toolchainPath ,
73637367 default : toolchainPath
73647368 }
@@ -7648,7 +7652,9 @@ export class ProjectExplorer implements CustomConfigurationProvider {
76487652
76497653 const isChinese = getLocalLanguageType ( ) == LanguageIndexs . Chinese ;
76507654 const ui : SimpleUIConfig = {
7651- title : ( isChinese ? '创建 Cortex-Debug ({}) 调试配置模板' : 'Create Cortex-Debug ({}) Configuration Template' ) . replace ( '{}' , type . toUpperCase ( ) ) ,
7655+ title : ( isChinese
7656+ ? '创建 Cortex-Debug ({}) 调试配置模板'
7657+ : 'Create Cortex-Debug ({}) Configuration Template' ) . replace ( '{}' , type . toUpperCase ( ) ) ,
76527658 viewColumn : vscode . ViewColumn . One ,
76537659 notTakeFocus : false ,
76547660 btns : {
0 commit comments