@@ -4793,15 +4793,15 @@ export class ProjectExplorer implements CustomConfigurationProvider {
47934793 const isInherited = ccArgs && ! absPattern ;
47944794
47954795 const ui_cfg : SimpleUIConfig = {
4796- title : 'Extra Compiler Args ' ,
4796+ title : 'Extra Compiler Options ' ,
47974797 items : { } ,
47984798 } ;
47994799
48004800 if ( isInherited ) { // 继承于其他匹配模式
48014801 ui_cfg . items [ 'inherit' ] = {
48024802 type : 'input' ,
48034803 attrs : { readonly : true } ,
4804- name : `Inherited Args (from other args pattern, check your '*.files.options.yml' file for details !)` ,
4804+ name : `Inherited Options (from other pattern, check your '*.files.options.yml' file for details !)` ,
48054805 data : < SimpleUIConfigData_input > {
48064806 value : ccArgs ,
48074807 default : ccArgs
@@ -4812,7 +4812,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
48124812 ui_cfg . items [ 'args' ] = {
48134813 type : 'input' ,
48144814 attrs : { } ,
4815- name : 'Compiler Args ' ,
4815+ name : 'Compiler Options ' ,
48164816 data : < SimpleUIConfigData_input > {
48174817 placeHolder : `compiler options, like: '-O1', '-Os', '-flto' ...` ,
48184818 value : isInherited ? '' : ccArgs ,
@@ -4889,15 +4889,15 @@ export class ProjectExplorer implements CustomConfigurationProvider {
48894889 const isInherited = ccArgs && ! absPattern ;
48904890
48914891 const ui_cfg : SimpleUIConfig = {
4892- title : 'Extra Compiler Args ' ,
4892+ title : 'Extra Compiler Options ' ,
48934893 items : { } ,
48944894 } ;
48954895
48964896 if ( isInherited ) { // 继承于其他匹配模式
48974897 ui_cfg . items [ 'inherit' ] = {
48984898 type : 'input' ,
48994899 attrs : { readonly : true } ,
4900- name : `Inherited Args (from other args pattern, check your '*.files.options.yml' file for details !)` ,
4900+ name : `Inherited Options (from other args pattern, check your '*.files.options.yml' file for details !)` ,
49014901 data : < SimpleUIConfigData_input > {
49024902 value : ccArgs ,
49034903 default : ccArgs
@@ -4908,7 +4908,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
49084908 ui_cfg . items [ 'args' ] = {
49094909 type : 'input' ,
49104910 attrs : { } ,
4911- name : 'Compiler Args ' ,
4911+ name : 'Compiler Options ' ,
49124912 data : < SimpleUIConfigData_input > {
49134913 placeHolder : `compiler options, like: '-O1', '-Os', '-flto' ...` ,
49144914 value : isInherited ? '' : ccArgs ,
0 commit comments