Don't overwrite the last regular entry with [q]
This commit is contained in:
parent
ee674f99a8
commit
61cfce000c
|
@ -117,8 +117,11 @@ 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()', '')
|
||||||
|
else
|
||||||
|
" Don't overwrite the last regular entry, thus +1
|
||||||
|
call s:register(line('$')+1, 'q', 'special', 'call s:close()', '')
|
||||||
endif
|
endif
|
||||||
call s:register(line('$'), 'q', 'special', 'call s:close()', '')
|
|
||||||
|
|
||||||
" compute first line offset
|
" compute first line offset
|
||||||
let s:firstline = 2
|
let s:firstline = 2
|
||||||
|
|
Loading…
Reference in a new issue