make [e] and [q] unmarkable

This commit is contained in:
Marco Hinz 2013-05-02 22:15:33 +02:00
parent d671a0957c
commit 9349ae7bf9

View file

@ -169,6 +169,9 @@ function! s:set_mark(type) abort
" matches[1]: content between brackets
" matches[2]: path
let matches = matchlist(getline('.'), '\v\[(.*)\]\s+(.*)')
if matches[2] =~ '\V<empty buffer>\|<quit>'
return
endif
setlocal modifiable
if matches[1] =~ 'B\|S\|V'
let s:nmarked -= 1