(fileUri: vscode.Uri)
| 56 | |
| 57 | // open the left file in the diff editor title |
| 58 | const commandDiffViewOpenLeftFile = async (fileUri: vscode.Uri) => { |
| 59 | const query = queryString.parse(fileUri?.query || ''); |
| 60 | return query.base ? openFileToEditor(vscode.Uri.parse(query.base as string)) : null; |
| 61 | }; |
| 62 | |
| 63 | // open the right file in the diff editor title |
| 64 | const commandDiffViewOpenRightFile = async (fileUri: vscode.Uri) => { |
nothing calls this directly
no test coverage detected