diff --git a/plugin/startify.vim b/plugin/startify.vim index e2a0302..84875d4 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -42,7 +42,7 @@ function! s:insane_in_the_membrane() abort endif setfiletype startify - call append('$', ' [e] ') + call append('$', ' [i] ') let cnt = 0 let sep = startify#get_sep() @@ -91,7 +91,7 @@ function! s:insane_in_the_membrane() abort setlocal nomodifiable nomodified - nnoremap e :enew + nnoremap i :enew nnoremap :normal nnoremap <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+') nnoremap q diff --git a/syntax/startify.vim b/syntax/startify.vim index a3b9883..e50eb8e 100644 --- a/syntax/startify.vim +++ b/syntax/startify.vim @@ -10,7 +10,7 @@ endif syntax match startifyDelimiter /\[\|\]/ highlight link startifyDelimiter Delimiter -syntax match startifyNumber /\v\[[eq[:digit:]]+\]/hs=s+1,he=e-1 contains=startifyDelimiter +syntax match startifyNumber /\v\[[iq[:digit:]]+\]/hs=s+1,he=e-1 contains=startifyDelimiter highlight link startifyNumber Number let b:current_syntax = 'startify'