소스 검색

Fixes 3rd party double auto-linking

main
Eric Amodio 3 년 전
부모
커밋
2fd7e6f095
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/git/remotes/github.ts

+ 2
- 2
src/git/remotes/github.ts 파일 보기

@ -15,7 +15,7 @@ import {
} from '../models/models';
import { RichRemoteProvider } from './provider';
const issueEnricher3rdParyRegex = /\b(\w+\\?-?\w+(?!\\?-)\/\w+\\?-?\w+(?!\\?-))\\?#([0-9]+)\b/g;
const issueEnricher3rdPartyRegex = /\b(\w+\\?-?\w+(?!\\?-)\/\w+\\?-?\w+(?!\\?-))\\?#([0-9]+)\b(?!]\()/g;
const fileRegex = /^\/([^/]+)\/([^/]+?)\/blob(.+)$/i;
const rangeRegex = /^L(\d+)(?:-L(\d+))?$/;
@ -52,7 +52,7 @@ export class GitHubRemote extends RichRemoteProvider {
{
linkify: (text: string) =>
text.replace(
issueEnricher3rdParyRegex,
issueEnricher3rdPartyRegex,
`[$&](${this.protocol}://${this.domain}/$1/issues/$2 "Open Issue #$2 from $1 on ${this.name}")`,
),
},

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