(fileUri: vscode.Uri)
| 62 | |
| 63 | // open the right file in the diff editor title |
| 64 | const commandDiffViewOpenRightFile = async (fileUri: vscode.Uri) => { |
| 65 | const query = queryString.parse(fileUri?.query || ''); |
| 66 | return query.head ? openFileToEditor(vscode.Uri.parse(query.head as string)) : null; |
| 67 | }; |
| 68 | |
| 69 | // get the file uri with the concrete commit sha, the `ref` in |
| 70 | // `fileUri.authority` maybe newer but not related this file |
nothing calls this directly
no test coverage detected