diff --git a/README.md b/README.md index e1f48f5..6a7c083 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,15 @@ _1)_ If you start Vim without giving any filenames to it (or pipe stuff to it so should be available in the start screen. You can either navigate to a certain menu entry or you just key in whatever - is written between the square brackets on that line. (You can even - double-click anywhere on the line now.) + is written between the square brackets on that line. You can even + double-click anywhere on the line now. + + Per default the startify buffer gets closed automatically, if an entry was + selected. + + You can reopen the screen via :Startify. + + If you want to open an empty buffer, hit either 'e' or 'i'. Quit via 'q'. _2)_ It eases handling of loading and saving sessions by only working with a certain directory. Two commands are used for convenience: diff --git a/doc/startify.txt b/doc/startify.txt index 2130bdf..848480f 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -46,13 +46,16 @@ Startify basically provides two things: should be available in the start screen. You can either navigate to a certain menu entry and hit enter or you just - key in whatever is written between the square brackets on that line. + key in whatever is written between the square brackets on that line. You + can even double-click anywhere on the line now. Per default the startify buffer gets closed automatically, if an entry was selected. You can reopen the screen via :Startify. + If you want to open an empty buffer, hit either 'e' or 'i'. Quit via 'q'. + 2) It eases handling of loading and saving sessions by only working with a certain directory. Two commands are used for convenience: @@ -153,7 +156,7 @@ start screen. let g:startify_enable_special = 1 -Don't show [i] and [q]. +Don't show and . ============================================================================== diff --git a/plugin/startify.vim b/plugin/startify.vim index 199f95c..4717cb1 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -47,7 +47,7 @@ function! s:insane_in_the_membrane() abort let cnt = 0 if special - call append('$', ' [i] ') + call append('$', ' [e] ') endif if get(g:, 'startify_show_files', 1) && !empty(v:oldfiles) @@ -99,6 +99,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\+') diff --git a/syntax/startify.vim b/syntax/startify.vim index 7975dd7..40a940e 100644 --- a/syntax/startify.vim +++ b/syntax/startify.vim @@ -11,7 +11,7 @@ let s:sep = startify#get_sep() syntax match StartifySpecial /\V\|/ syntax match StartifyBracket /\[\|\]/ -syntax match StartifyNumber /\v\[[iq[:digit:]]+\]/hs=s+1,he=e-1 contains=StartifyBracket +syntax match StartifyNumber /\v\[[eq[:digit:]]+\]/hs=s+1,he=e-1 contains=StartifyBracket execute 'syntax match StartifySlash /\'. s:sep .'/' execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'