Support for custom indices for g:startify_bookmarks

g:startify_bookmarks now supports custom indices directly. E.g.

    let g:startify_bookmarks = [ {'v': '~/.vimrc'} ]

References #176, #178.
This commit is contained in:
Marco Hinz 2015-11-03 22:39:58 +01:00
parent 0bb969178d
commit df8b4e1fde
2 changed files with 14 additions and 7 deletions

View file

@ -529,14 +529,19 @@ function! s:show_bookmarks() abort
call s:print_section_header() call s:print_section_header()
endif endif
for fname in g:startify_bookmarks for bookmark in g:startify_bookmarks
let index = s:get_index_as_string(s:entry_number) if type(bookmark) == 4 " dict?
let [index, fname] = items(bookmark)[0]
else " string
let [index, fname] = [s:get_index_as_string(s:entry_number), bookmark]
let s:entry_number += 1
endif
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname) call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
if has('win32') if has('win32')
let fname = substitute(fname, '\[', '\[[]', 'g') let fname = substitute(fname, '\[', '\[[]', 'g')
endif endif
call s:register(line('$'), index, 'file', 'edit', fname) call s:register(line('$'), index, 'file', 'edit', fname)
let s:entry_number += 1 unlet bookmark " avoid type mismatch for heterogeneous lists
endfor endfor
call append('$', '') call append('$', '')

View file

@ -177,12 +177,13 @@ Feel free to add some cool ASCII action!
> >
let g:startify_bookmarks = [] let g:startify_bookmarks = []
< <
A list of files to bookmark. Those files will always be shown at the bottom of A list of files or directories to bookmark. The list can contain two kinds of
the start screen. types. Either a path or a dictionary whereas the key is the custom index and
the value the path.
Example: Example:
> >
let g:startify_bookmarks = [ '~/.vimrc' ] let g:startify_bookmarks = [ {'v': '~/.vimrc'}, '~/.zshrc' ]
< <
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
*g:startify_files_number* *g:startify_files_number*
@ -714,7 +715,8 @@ This is my configuration..
\ ] \ ]
let g:startify_bookmarks = [ let g:startify_bookmarks = [
\ '~/.vim/vimrc', \ { 'v': '~/.vim/vimrc' },
\ { 't': '/tmp' },
\ '/data/vim/golfing', \ '/data/vim/golfing',
\ ] \ ]