Fix nowait logic

References #188.
This commit is contained in:
Marco Hinz 2015-11-20 13:45:40 +01:00
parent 83d1e8ad1c
commit cc5989711b

View file

@ -12,7 +12,7 @@ let g:autoloaded_startify = 1
" Init: values {{{1 " Init: values {{{1
let s:numfiles = get(g:, 'startify_files_number', 10) let s:numfiles = get(g:, 'startify_files_number', 10)
let s:show_special = get(g:, 'startify_enable_special', 1) let s:show_special = get(g:, 'startify_enable_special', 1)
let s:nowait = get(g:, 'startify_mapping_nowait') let s:nowait = get(g:, 'startify_mapping_nowait') ? '<nowait>' : ''
let s:delete_buffers = get(g:, 'startify_session_delete_buffers') let s:delete_buffers = get(g:, 'startify_session_delete_buffers')
let s:relative_path = get(g:, 'startify_relative_path') ? ':.:~' : ':p:~' let s:relative_path = get(g:, 'startify_relative_path') ? ':.:~' : ':p:~'
let s:session_dir = resolve(expand(get(g:, 'startify_session_dir', let s:session_dir = resolve(expand(get(g:, 'startify_session_dir',
@ -76,7 +76,7 @@ function! startify#insane_in_the_membrane() abort
if s:show_special if s:show_special
call append('$', [' [e] <empty buffer>', '']) call append('$', [' [e] <empty buffer>', ''])
endif endif
call s:register(line('$')-1, 'e', 'special', 'enew', '', 1) call s:register(line('$')-1, 'e', 'special', 'enew', '', '<nowait>')
let s:entry_number = 0 let s:entry_number = 0
if filereadable('Session.vim') if filereadable('Session.vim')
@ -119,10 +119,10 @@ function! startify#insane_in_the_membrane() abort
if s:show_special if s:show_special
call append('$', ['', ' [q] <quit>']) call append('$', ['', ' [q] <quit>'])
call s:register(line('$'), 'q', 'special', 'call s:close()', '', 1) call s:register(line('$'), 'q', 'special', 'call s:close()', '', '<nowait>')
else else
" Don't overwrite the last regular entry, thus +1 " Don't overwrite the last regular entry, thus +1
call s:register(line('$')+1, 'q', 'special', 'call s:close()', '', 1) call s:register(line('$')+1, 'q', 'special', 'call s:close()', '', '<nowait>')
endif endif
" compute first line offset " compute first line offset
@ -744,14 +744,14 @@ function! s:print_section_header() abort
endfunction endfunction
" Function: s:register {{{1 " Function: s:register {{{1
function! s:register(line, index, type, cmd, path, ...) function! s:register(line, index, type, cmd, path, wait)
let s:entries[a:line] = { let s:entries[a:line] = {
\ 'index': a:index, \ 'index': a:index,
\ 'type': a:type, \ 'type': a:type,
\ 'cmd': a:cmd, \ 'cmd': a:cmd,
\ 'path': a:path, \ 'path': a:path,
\ 'nowait': a:wait,
\ 'marked': 0, \ 'marked': 0,
\ 'nowait': a:0 ? '<nowait>' : '',
\ } \ }
endfunction endfunction