Improve option handling

This commit is contained in:
Marco Hinz 2013-07-19 01:08:10 +02:00
parent 9dd72dd2cd
commit d18cba2fa2

View file

@ -8,12 +8,18 @@ if exists('g:autoloaded_startify') || &cp
endif endif
let g:autoloaded_startify = 1 let g:autoloaded_startify = 1
" Init: values {{{1
let s:session_dir = resolve(expand(get(g:, 'startify_session_dir', let s:session_dir = resolve(expand(get(g:, 'startify_session_dir',
\ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session'))) \ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session')))
let s:cmd = (get(g:, 'startify_change_to_dir', 1) ? ' <bar> lcd %:h' : '') . '<cr>' let s:cmd = (get(g:, 'startify_change_to_dir', 1) ? ' <bar> lcd %:h' : '') . '<cr>'
let s:numfiles = get(g:, 'startify_show_files_number', 10)
let s:show_special = get(g:, 'startify_enable_special', 1)
let s:show_dir = get(g:, 'startify_show_dir')
let s:show_files = get(g:, 'startify_show_files', 1)
let s:show_sessions = get(g:, 'startify_show_sessions', 1)
" Function: startify#insane_in_the_membrane {{{1 " Function: #insane_in_the_membrane {{{1
function! startify#insane_in_the_membrane() abort function! startify#insane_in_the_membrane() abort
if !empty(v:servername) && exists('g:startify_skiplist_server') if !empty(v:servername) && exists('g:startify_skiplist_server')
for servname in g:startify_skiplist_server for servname in g:startify_skiplist_server
@ -35,18 +41,16 @@ function! startify#insane_in_the_membrane() abort
let s:offset_header += len(g:startify_custom_header) let s:offset_header += len(g:startify_custom_header)
endif endif
let special = get(g:, 'startify_enable_special', 1)
let sep = startify#get_separator() let sep = startify#get_separator()
let cnt = 0 let cnt = 0
if special if s:show_special
call append('$', ' [e] <empty buffer>') call append('$', ' [e] <empty buffer>')
endif endif
if get(g:, 'startify_show_dir') if s:show_dir
let files = [] let files = []
let numfiles = get(g:, 'startify_show_files_number', 10) if s:show_special
if special
call append('$', '') call append('$', '')
endif endif
for fname in split(glob('.\=*')) for fname in split(glob('.\=*'))
@ -65,16 +69,15 @@ function! startify#insane_in_the_membrane() abort
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname) call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) '<cr>' execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) '<cr>'
let cnt += 1 let cnt += 1
if (cnt == numfiles) if (cnt == s:numfiles)
break break
endif endif
endfor endfor
endif endif
if get(g:, 'startify_show_files', 1) && !empty(v:oldfiles) if s:show_files && !empty(v:oldfiles)
let entries = {} let entries = {}
let numfiles = get(g:, 'startify_show_files_number', 10) if s:show_special || s:show_dir
if special || get(g:, 'startify_show_dir')
call append('$', '') call append('$', '')
endif endif
for fname in v:oldfiles for fname in v:oldfiles
@ -91,8 +94,8 @@ function! startify#insane_in_the_membrane() abort
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname) call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) s:cmd execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) s:cmd
let cnt += 1 let cnt += 1
let numfiles -= 1 let s:numfiles -= 1
if !numfiles if !s:numfiles
break break
endif endif
endfor endfor
@ -100,8 +103,10 @@ function! startify#insane_in_the_membrane() abort
let sfiles = split(globpath(s:session_dir, '*'), '\n') let sfiles = split(globpath(s:session_dir, '*'), '\n')
if get(g:, 'startify_show_sessions', 1) && !empty(sfiles) if s:show_sessions && !empty(sfiles)
call append('$', '') if s:show_special || s:show_dir || s:show_files
call append('$', '')
endif
for i in range(len(sfiles)) for i in range(len(sfiles))
let idx = (i + cnt) let idx = (i + cnt)
let index = s:get_index_as_string(idx) let index = s:get_index_as_string(idx)
@ -112,7 +117,9 @@ function! startify#insane_in_the_membrane() abort
endif endif
if exists('g:startify_bookmarks') if exists('g:startify_bookmarks')
call append('$', '') if s:show_special || s:show_dir || s:show_files || s:show_sessions
call append('$', '')
endif
for fname in g:startify_bookmarks for fname in g:startify_bookmarks
let cnt += 1 let cnt += 1
let index = s:get_index_as_string(cnt) let index = s:get_index_as_string(cnt)
@ -121,7 +128,7 @@ function! startify#insane_in_the_membrane() abort
endfor endfor
endif endif
if special if s:show_special
call append('$', ['', ' [q] <quit>']) call append('$', ['', ' [q] <quit>'])
endif endif
@ -150,10 +157,10 @@ function! startify#insane_in_the_membrane() abort
autocmd startify BufLeave <buffer> autocmd! startify * autocmd startify BufLeave <buffer> autocmd! startify *
autocmd startify WinLeave <buffer> bd autocmd startify WinLeave <buffer> bd
call cursor((special ? 4 : 2) + s:offset_header, 5) call cursor((s:show_special ? 4 : 2) + s:offset_header, 5)
endfunction endfunction
" Function: startify#session_delete {{{1 " Function: #session_delete {{{1
function! startify#session_delete(...) abort function! startify#session_delete(...) abort
if !isdirectory(s:session_dir) if !isdirectory(s:session_dir)
echo 'The session directory does not exist: '. s:session_dir echo 'The session directory does not exist: '. s:session_dir
@ -178,7 +185,7 @@ function! startify#session_delete(...) abort
endif endif
endfunction endfunction
" Function: startify#session_save {{{1 " Function: #session_save {{{1
function! startify#session_save(...) abort function! startify#session_save(...) abort
if !isdirectory(s:session_dir) if !isdirectory(s:session_dir)
if exists('*mkdir') if exists('*mkdir')
@ -217,7 +224,7 @@ function! startify#session_save(...) abort
endif endif
endfunction endfunction
" Function: startify#session_load {{{1 " Function: #session_load {{{1
function! startify#session_load(...) abort function! startify#session_load(...) abort
if !isdirectory(s:session_dir) if !isdirectory(s:session_dir)
echo 'The session directory does not exist: '. s:session_dir echo 'The session directory does not exist: '. s:session_dir
@ -237,17 +244,17 @@ function! startify#session_load(...) abort
endif endif
endfunction endfunction
" Function: startify#session_list {{{1 " Function: #session_list {{{1
function! startify#session_list(lead, ...) abort function! startify#session_list(lead, ...) abort
return map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")') return map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")')
endfunction endfunction
" Function: startify#session_list_as_string {{{1 " Function: #session_list_as_string {{{1
function! startify#session_list_as_string(lead, ...) abort function! startify#session_list_as_string(lead, ...) abort
return join(map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")'), "\n") return join(map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")'), "\n")
endfunction endfunction
" Function: startify#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 ? '/' : '\'
endfunction endfunction