ignore sessions for S/V/B
This commit is contained in:
parent
7724dde313
commit
b5205e17a7
|
@ -169,7 +169,7 @@ function! s:set_mark(type) abort
|
||||||
" matches[1]: content between brackets
|
" matches[1]: content between brackets
|
||||||
" matches[2]: path
|
" matches[2]: path
|
||||||
let matches = matchlist(getline('.'), '\v\[(.*)\]\s+(.*)')
|
let matches = matchlist(getline('.'), '\v\[(.*)\]\s+(.*)')
|
||||||
if matches[2] =~ '\V<empty buffer>\|<quit>'
|
if matches[2] =~ '\V<empty buffer>\|<quit>' || matches[2] =~ '^\w\+$'
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
setlocal modifiable
|
setlocal modifiable
|
||||||
|
|
Loading…
Reference in a new issue