1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:30:07 +08:00

Ignore case

This commit is contained in:
wsdjeg 2017-05-30 14:35:26 +08:00
parent 84cea8aa98
commit 135a83f08a

View File

@ -49,7 +49,7 @@ function! s:complete_pr(base) abort
\ 'menu' : pr.title, \ 'menu' : pr.title,
\ 'kind' : (has_key(pr, 'pull_request') ? s:pr_kind : s:issue_kind), \ 'kind' : (has_key(pr, 'pull_request') ? s:pr_kind : s:issue_kind),
\ } \ }
if pr.number . pr.title =~ a:base if pr.number . pr.title =~? a:base
call add(rst, item) call add(rst, item)
endif endif
endfor endfor