diff --git a/autoload/startify.vim b/autoload/startify.vim index fd48cdb..4198115 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -143,10 +143,6 @@ function! startify#insane_in_the_membrane(callingbuffer) abort nnoremap <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+') nnoremap q :call close() - if exists('g:startify_empty_buffer_key') - execute 'nnoremap '. g:startify_empty_buffer_key .' :enew' - endif - autocmd startify CursorMoved call s:set_cursor() if s:restore_position autocmd startify BufReadPost * call s:restore_position() diff --git a/doc/startify.txt b/doc/startify.txt index 753ba6b..dc6ce86 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -101,7 +101,6 @@ default values. |g:startify_custom_header| |g:startify_custom_footer| |g:startify_restore_position| - |g:startify_empty_buffer_key| |g:startify_enable_special| |g:startify_session_savevars| |g:startify_session_savecmds| @@ -279,15 +278,6 @@ Example: > let g:startify_skiplist_server = [ 'GVIM' ] < ------------------------------------------------------------------------------- - *g:startify_empty_buffer_key* -> - let g:startify_empty_buffer_key = 'o' -< -This creates an additional, hidden mapping for the empty buffer. - -Default: does not exist - ------------------------------------------------------------------------------ *g:startify_enable_special* >