File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ export function askReloadFiles(){
16
16
export function infoMissingCompileInfo ( ) {
17
17
void vscode . window . showInformationMessage ( "Compile Info folder is missing." , "How to enable?" ) . then ( async selection => {
18
18
if ( selection === "How to enable?" ) {
19
- await vscode . env . openExternal ( vscode . Uri . parse ( "https://github.com/intel/Edk2Code/wiki/Index-source-code#1- enable-compile-information-in-your-build " ) ) ;
19
+ await vscode . env . openExternal ( vscode . Uri . parse ( "https://github.com/intel/Edk2Code/wiki/Index-source-code#enable-compile-information" ) ) ;
20
20
}
21
21
} ) ;
22
22
}
23
23
24
24
export function infoMissingCompilesCommandCpp ( ) {
25
25
void vscode . window . showInformationMessage ( "Build contains compile_commands.json but C++ is not configured" , "Fix" , "Help" ) . then ( async selection => {
26
26
if ( selection === "Help" ) {
27
- await vscode . env . openExternal ( vscode . Uri . parse ( "https://github.com/intel/Edk2Code/wiki/Index-source-code#compile_commandsjson " ) ) ;
27
+ await vscode . env . openExternal ( vscode . Uri . parse ( "https://github.com/intel/Edk2Code/wiki/Index-source-code#enable-compile-information " ) ) ;
28
28
}
29
29
} ) ;
30
30
}
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export class FileUseWarning {
75
75
}
76
76
77
77
edkStatusBar . setColor ( 'statusBarItem.warningBackground' ) ;
78
- edkStatusBar . setHelpUrl ( "https://github.com/intel/Edk2Code/wiki/Functionality#unused-libraries " ) ;
78
+ edkStatusBar . setHelpUrl ( "https://github.com/intel/Edk2Code/wiki/Functionality#status-bar " ) ;
79
79
edkStatusBar . setText ( `$(warning) ${ path . basename ( document . fileName ) } ` ) ;
80
80
edkStatusBar . setToolTip ( "This file is not used by any loaded workspace" ) ;
81
81
return ;
You can’t perform that action at this time.
0 commit comments