parent
9fbbf730b9
commit
88a3c7e420
|
@ -25,17 +25,6 @@ let s:skiplist = get(g:, 'startify_skiplist', [
|
||||||
\ 'bundle/.*/doc',
|
\ 'bundle/.*/doc',
|
||||||
\ ])
|
\ ])
|
||||||
|
|
||||||
let s:lists = get(g:, 'startify_list_order', [
|
|
||||||
\ [' Last recently opened files:'],
|
|
||||||
\ 'files',
|
|
||||||
\ [' Last recently modified files in the current directory:'],
|
|
||||||
\ 'dir',
|
|
||||||
\ [' My sessions:'],
|
|
||||||
\ 'sessions',
|
|
||||||
\ [' My bookmarks:'],
|
|
||||||
\ 'bookmarks',
|
|
||||||
\ ])
|
|
||||||
|
|
||||||
" Function: #get_separator {{{1
|
" Function: #get_separator {{{1
|
||||||
function! startify#get_separator() abort
|
function! startify#get_separator() abort
|
||||||
return !exists('+shellslash') || &shellslash ? '/' : '\'
|
return !exists('+shellslash') || &shellslash ? '/' : '\'
|
||||||
|
@ -94,6 +83,16 @@ function! startify#insane_in_the_membrane(callingbuffer) abort
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let s:section_header_lines = []
|
let s:section_header_lines = []
|
||||||
|
let s:lists = get(g:, 'startify_list_order', [
|
||||||
|
\ [' Last recently opened files:'],
|
||||||
|
\ 'files',
|
||||||
|
\ [' Last recently modified files in the current directory:'],
|
||||||
|
\ 'dir',
|
||||||
|
\ [' My sessions:'],
|
||||||
|
\ 'sessions',
|
||||||
|
\ [' My bookmarks:'],
|
||||||
|
\ 'bookmarks',
|
||||||
|
\ ])
|
||||||
|
|
||||||
for item in s:lists
|
for item in s:lists
|
||||||
if type(item) == 1
|
if type(item) == 1
|
||||||
|
|
Loading…
Reference in a new issue