1
1
mirror of https://github.com/kahole/edamagit.git synced 2024-10-26 09:00:54 +03:00

add commit hash under curosr in chooseRef

This commit is contained in:
bzy-debug 2023-11-25 17:36:37 +08:00
parent 64cd537db2
commit 154822599b

View File

@ -150,8 +150,29 @@ export default class MagitUtils {
public static async chooseRef(repository: MagitRepository, prompt: string, showCurrent = false, showHEAD = false, allowFreeform = true, remoteOnly = false): Promise<string> {
const getCursorCommitHash: () => PickMenuItem<string> | undefined = () => {
const activeEditor = vscode.window.activeTextEditor;
if (activeEditor === undefined) {
return;
}
const document = activeEditor.document;
const selection = activeEditor.selection;
const hashWordRange = document.getWordRangeAtPosition(selection.active, /[0-9a-z]{7}/);
if (hashWordRange === undefined) {
return;
}
const hash = document.getText(hashWordRange);
return { label: hash, meta: hash };
};
const refs: PickMenuItem<string>[] = [];
const cursorCommitHash = getCursorCommitHash();
if (cursorCommitHash) {
refs.push(cursorCommitHash);
}
if (showCurrent && repository.HEAD?.name) {
refs.push({
label: repository.HEAD.name,