From 9349ae7bf9a9fa1d420ae7c2985e903d2ce29bf4 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 2 May 2013 22:15:33 +0200 Subject: [PATCH] make [e] and [q] unmarkable --- plugin/startify.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugin/startify.vim b/plugin/startify.vim index d090e92..8336bad 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -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\|' + return + endif setlocal modifiable if matches[1] =~ 'B\|S\|V' let s:nmarked -= 1