浏览代码

Fixes stash matching for commit search

e.g. `stash{1}`
main
Eric Amodio 3 年前
父节点
当前提交
d6f56aaf87
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/git/search.ts

+ 1
- 1
src/git/search.ts 查看文件

@ -52,7 +52,7 @@ export namespace SearchPattern {
]);
const searchOperationRegex =
/(?:(?<op>=:|message:|@:|author:|#:|commit:|\?:|file:|~:|change:)\s?(?<value>".+?"|\S+\b))|(?<text>\S+)(?!(?:=|message|@|author|#|commit|\?|file|~|change):)/gi;
/(?:(?<op>=:|message:|@:|author:|#:|commit:|\?:|file:|~:|change:)\s?(?<value>".+?"|\S+\b}?))|(?<text>\S+)(?!(?:=|message|@|author|#|commit|\?|file|~|change):)/gi;
export function fromCommit(ref: string): string;
export function fromCommit(commit: GitRevisionReference): string;

正在加载...
取消
保存