Fix regex for properly selecting several entries
This commit is contained in:
parent
eca7c84c41
commit
1b7ca2ed7c
|
@ -485,7 +485,7 @@ function! s:set_mark(type) abort
|
|||
let s:marked = {}
|
||||
endif
|
||||
|
||||
let [id, path] = matchlist(getline('.'), '\v\[(.{-})\]\s+(.{-})')[1:2]
|
||||
let [id, path] = matchlist(getline('.'), '\v\[(.{-})\]\s+(.*)')[1:2]
|
||||
let path = fnamemodify(path, ':p')
|
||||
|
||||
if path =~# '\V<empty buffer>\|<quit>' || path =~# '^\w\+$'
|
||||
|
|
Loading…
Reference in a new issue