Remove erroneous use of fnameescape (fixes #110)
This commit is contained in:
parent
241ea89117
commit
7782ac6452
@ -77,7 +77,7 @@ let s:bibtex = 1
|
|||||||
let s:completion_type = ''
|
let s:completion_type = ''
|
||||||
|
|
||||||
function! latex#complete#labels(regex) " {{{1
|
function! latex#complete#labels(regex) " {{{1
|
||||||
let labels = s:labels_get(fnameescape(g:latex#data[b:latex.id].aux()))
|
let labels = s:labels_get(g:latex#data[b:latex.id].aux())
|
||||||
let matches = filter(copy(labels), 'v:val[0] =~ ''' . a:regex . '''')
|
let matches = filter(copy(labels), 'v:val[0] =~ ''' . a:regex . '''')
|
||||||
|
|
||||||
" Try to match label and number
|
" Try to match label and number
|
||||||
|
Loading…
x
Reference in New Issue
Block a user