소스 검색

Sorts starred branches first in quickpick

main
Eric Amodio 6 년 전
부모
커밋
baa2a9d715
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      src/quickpicks/branchesAndTagsQuickPick.ts

+ 2
- 1
src/quickpicks/branchesAndTagsQuickPick.ts 파일 보기

@ -267,7 +267,8 @@ export class BranchesAndTagsQuickPick {
branches.sort(
(a, b) =>
(b.remote ? -1 : 1) - (a.remote ? -1 : 1) ||
(a.starred ? -1 : 1) - (b.starred ? -1 : 1) ||
(b.remote ? -1 : 1) - (a.remote ? -1 : 1) ||
a.name.localeCompare(b.name, undefined, { numeric: true, sensitivity: 'base' })
);
for (const b of branches) {

불러오는 중...
취소
저장