Fix last line issue
This commit is contained in:
parent
ddb4fce6b9
commit
4f7d5aae53
|
@ -69,11 +69,12 @@ function! startify#insane_in_the_membrane() abort
|
||||||
|
|
||||||
for list in get(g:, 'startify_list_order', ['files', 'sessions', 'bookmarks'])
|
for list in get(g:, 'startify_list_order', ['files', 'sessions', 'bookmarks'])
|
||||||
let cnt = s:show_{list}(cnt)
|
let cnt = s:show_{list}(cnt)
|
||||||
call append('$', '')
|
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
$delete
|
||||||
|
|
||||||
if s:show_special
|
if s:show_special
|
||||||
call append('$', ' [q] <quit>')
|
call append('$', ['', ' [q] <quit>'])
|
||||||
endif
|
endif
|
||||||
|
|
||||||
setlocal nomodifiable nomodified
|
setlocal nomodifiable nomodified
|
||||||
|
@ -212,6 +213,7 @@ function! s:show_dir(cnt) abort
|
||||||
\ || (exists('g:startify_skiplist') && s:is_in_skiplist(resolve(fnamemodify(fname, ':p'))))
|
\ || (exists('g:startify_skiplist') && s:is_in_skiplist(resolve(fnamemodify(fname, ':p'))))
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
|
|
||||||
call add(files, [getftime(fname), fname])
|
call add(files, [getftime(fname), fname])
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
@ -236,6 +238,10 @@ function! s:show_dir(cnt) abort
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
if !empty(files)
|
||||||
|
call append('$', '')
|
||||||
|
endif
|
||||||
|
|
||||||
return cnt
|
return cnt
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
@ -270,14 +276,17 @@ function! s:show_files(cnt) abort
|
||||||
break
|
break
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
endif
|
|
||||||
|
|
||||||
return cnt
|
call append('$', '')
|
||||||
|
|
||||||
|
return cnt
|
||||||
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" Function: s:show_sessions {{{1
|
" Function: s:show_sessions {{{1
|
||||||
function! s:show_sessions(cnt) abort
|
function! s:show_sessions(cnt) abort
|
||||||
let sfiles = split(globpath(s:session_dir, '*'), '\n')
|
let sfiles = split(globpath(s:session_dir, '*'), '\n')
|
||||||
|
let slen = len(sfiles)
|
||||||
|
|
||||||
if empty(sfiles)
|
if empty(sfiles)
|
||||||
return a:cnt
|
return a:cnt
|
||||||
|
@ -285,14 +294,16 @@ function! s:show_sessions(cnt) abort
|
||||||
|
|
||||||
let cnt = a:cnt
|
let cnt = a:cnt
|
||||||
|
|
||||||
for i in range(len(sfiles))
|
for i in range(slen)
|
||||||
let idx = (i + cnt)
|
let idx = (i + cnt)
|
||||||
let index = s:get_index_as_string(idx)
|
let index = s:get_index_as_string(idx)
|
||||||
|
|
||||||
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(sfiles[i], ':t:r'))
|
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(sfiles[i], ':t:r'))
|
||||||
execute 'nnoremap <buffer>' index ':source' fnameescape(sfiles[i]) '<cr>'
|
execute 'nnoremap <buffer>' index ':source' fnameescape(sfiles[i]) '<cr>'
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
call append('$', '')
|
||||||
|
|
||||||
return idx + 1
|
return idx + 1
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
@ -309,6 +320,8 @@ function! s:show_bookmarks(cnt) abort
|
||||||
|
|
||||||
let cnt += 1
|
let cnt += 1
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
call append('$', '')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
return cnt
|
return cnt
|
||||||
|
@ -360,7 +373,7 @@ endfunction
|
||||||
"
|
"
|
||||||
function! s:set_mark(type) abort
|
function! s:set_mark(type) abort
|
||||||
if !exists('s:marked')
|
if !exists('s:marked')
|
||||||
let s:marked = {}
|
let s:marked = {}
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let [id, path] = matchlist(getline('.'), '\v\[(.*)\]\s+(.*)')[1:2]
|
let [id, path] = matchlist(getline('.'), '\v\[(.*)\]\s+(.*)')[1:2]
|
||||||
|
|
Loading…
Reference in a new issue