vim-sussify/autoload/startify.vim

767 lines
21 KiB
VimL
Raw Normal View History

2013-09-24 15:41:31 +00:00
" vim: et sw=2 sts=2
2013-04-23 14:41:02 +00:00
" Plugin: https://github.com/mhinz/vim-startify
2015-04-28 13:34:11 +00:00
" Description: A fancy start screen for Vim.
2013-04-23 14:41:02 +00:00
" Maintainer: Marco Hinz <http://github.com/mhinz>
2013-08-13 12:19:51 +00:00
if exists('g:autoloaded_startify') || &compatible
2013-04-23 14:41:02 +00:00
finish
endif
let g:autoloaded_startify = 1
2013-07-18 23:08:10 +00:00
" Init: values {{{1
let s:nowait_string = v:version >= 704 || (v:version == 703 && has('patch1261')) ? '<nowait>' : ''
let s:nowait = get(g:, 'startify_mapping_nowait') ? s:nowait_string : ''
let s:numfiles = get(g:, 'startify_files_number', 10)
let s:show_special = get(g:, 'startify_enable_special', 1)
let s:delete_buffers = get(g:, 'startify_session_delete_buffers')
let s:relative_path = get(g:, 'startify_relative_path') ? ':.:~' : ':p:~'
let s:session_dir = resolve(expand(get(g:, 'startify_session_dir',
2013-05-13 17:53:44 +00:00
\ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session')))
let s:skiplist = get(g:, 'startify_skiplist', [
\ 'COMMIT_EDITMSG',
\ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc',
\ 'bundle/.*/doc',
\ ])
" Function: #get_separator {{{1
function! startify#get_separator() abort
return !exists('+shellslash') || &shellslash ? '/' : '\'
endfunction
let s:sep = startify#get_separator()
2013-09-04 07:25:33 +00:00
" Function: #get_lastline {{{1
function! startify#get_lastline() abort
return s:lastline + 1
2013-09-04 07:25:33 +00:00
endfunction
2013-07-18 23:08:10 +00:00
" Function: #insane_in_the_membrane {{{1
function! startify#insane_in_the_membrane() abort
if &insertmode
return
endif
2013-05-13 17:48:03 +00:00
if !empty(v:servername) && exists('g:startify_skiplist_server')
for servname in g:startify_skiplist_server
if servname == v:servername
2013-05-13 17:48:03 +00:00
return
endif
endfor
endif
2013-07-18 23:51:02 +00:00
setlocal
\ bufhidden=wipe
\ buftype=nofile
\ nobuflisted
\ nocursorcolumn
\ nocursorline
\ nolist
\ nonumber
\ noswapfile
if empty(&statusline)
setlocal statusline=\ startify
endif
if v:version >= 703
2013-05-13 17:48:03 +00:00
setlocal norelativenumber
endif
if exists('g:startify_custom_header')
call append('$', g:startify_custom_header)
endif
2015-06-02 06:55:11 +00:00
let s:tick = 0
let s:entries = {}
2013-07-18 23:08:10 +00:00
if s:show_special
2013-07-30 08:26:40 +00:00
call append('$', [' [e] <empty buffer>', ''])
2013-05-13 17:48:03 +00:00
endif
call s:register(line('$')-1, 'e', 'special', 'enew', '', s:nowait_string)
2013-05-13 17:48:03 +00:00
2014-11-23 09:30:25 +00:00
let s:entry_number = 0
if filereadable('Session.vim')
call append('$', [' [0] '. getcwd() . s:sep .'Session.vim', ''])
2015-06-02 07:07:14 +00:00
call s:register(line('$')-1, '0', 'session',
\ 'call startify#session_delete_buffers() | source', 'Session.vim',
\ s:nowait)
2014-11-23 09:30:25 +00:00
let s:entry_number = 1
2014-09-05 19:46:43 +00:00
let l:show_session = 1
endif
if empty(v:oldfiles)
echohl WarningMsg
echomsg "startify: Can't read viminfo file. Read :help startify-faq-02"
echohl NONE
endif
let b:startify_section_header_lines = []
let s:lists = get(g:, 'startify_list_order', [
\ [' MRU'], 'files',
\ [' MRU '. getcwd()], 'dir',
\ [' Sessions'], 'sessions',
\ [' Bookmarks'], 'bookmarks',
\ ])
2014-09-07 17:12:18 +00:00
2013-10-10 11:05:50 +00:00
for item in s:lists
if type(item) == 1
2014-11-23 09:30:25 +00:00
call s:show_{item}()
2013-10-10 11:05:50 +00:00
else
let s:last_message = item
endif
unlet item
2013-07-30 08:26:40 +00:00
endfor
2013-05-13 17:48:03 +00:00
2014-11-26 15:04:25 +00:00
silent $delete _
2013-09-01 18:03:55 +00:00
2013-07-18 23:08:10 +00:00
if s:show_special
2013-09-01 18:03:55 +00:00
call append('$', ['', ' [q] <quit>'])
call s:register(line('$'), 'q', 'special', 'call s:close()', '', s:nowait_string)
else
" Don't overwrite the last regular entry, thus +1
call s:register(line('$')+1, 'q', 'special', 'call s:close()', '', s:nowait_string)
2013-05-13 17:48:03 +00:00
endif
2014-09-05 19:46:43 +00:00
" compute first line offset
let s:firstline = 2
" increase offset if there is a custom header
if exists('g:startify_custom_header')
let s:firstline += len(g:startify_custom_header)
endif
" no special, no local Session.vim, but a section header
if !s:show_special && !exists('l:show_session') && type(s:lists[0]) == 3
let s:firstline += len(s:lists[0]) + 1
endif
let s:lastline = line('$')
2013-09-20 12:23:20 +00:00
2013-09-02 22:08:17 +00:00
if exists('g:startify_custom_footer')
call append('$', g:startify_custom_footer)
endif
2013-05-13 17:48:03 +00:00
setlocal nomodifiable nomodified
call s:set_mappings()
2014-09-05 19:46:43 +00:00
call cursor(s:firstline + (s:show_special ? 2 : 0), 5)
autocmd startify CursorMoved <buffer> call s:set_cursor()
set filetype=startify
silent! doautocmd <nomodeline> User Startified
2013-05-13 17:48:03 +00:00
endfunction
2013-07-18 23:27:01 +00:00
" Function: #session_load {{{1
function! startify#session_load(...) abort
2013-05-13 17:53:44 +00:00
if !isdirectory(s:session_dir)
echomsg 'The session directory does not exist: '. s:session_dir
2013-05-02 19:16:26 +00:00
return
2013-05-25 09:08:22 +00:00
elseif empty(startify#session_list_as_string(''))
echomsg 'There are no sessions...'
2013-05-02 20:06:18 +00:00
return
endif
let spath = s:session_dir . s:sep
if a:0
let spath .= a:1
else
if has('win32')
call inputsave()
let spath .= input(
\ 'Load this session: ',
\ fnamemodify(v:this_session, ':t'),
\ 'custom,startify#session_list_as_string') | redraw
call inputrestore()
else
let spath .= '__LAST__'
endif
endif
2013-07-18 23:27:01 +00:00
if filereadable(spath)
if get(g:, 'startify_session_persistence') && filewritable(v:this_session)
call startify#session_write(fnameescape(v:this_session))
endif
call startify#session_delete_buffers()
2013-07-18 23:27:01 +00:00
execute 'source '. fnameescape(spath)
call s:create_last_session_link(spath)
2013-05-02 19:16:26 +00:00
else
2013-07-18 23:27:01 +00:00
echo 'No such file: '. spath
2013-05-02 19:16:26 +00:00
endif
endfunction
2013-07-18 23:08:10 +00:00
" Function: #session_save {{{1
2013-05-25 09:08:22 +00:00
function! startify#session_save(...) abort
2013-05-13 17:53:44 +00:00
if !isdirectory(s:session_dir)
2013-04-26 16:06:30 +00:00
if exists('*mkdir')
2013-08-13 12:19:51 +00:00
echo 'The session directory does not exist: '. s:session_dir .'. Create it? [y/n]'
2013-04-29 13:06:40 +00:00
if (nr2char(getchar()) == 'y')
2013-05-13 17:53:44 +00:00
call mkdir(s:session_dir, 'p')
2013-04-26 16:06:30 +00:00
else
echo
return
endif
else
2013-05-13 17:53:44 +00:00
echo 'The session directory does not exist: '. s:session_dir
2013-04-26 16:06:30 +00:00
return
endif
2013-04-24 13:23:39 +00:00
endif
2013-08-13 12:19:51 +00:00
call inputsave()
let sname = exists('a:1')
\ ? a:1
\ : input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string')
\ | redraw
call inputrestore()
if empty(sname)
echo 'You gave an empty name!'
return
2013-05-25 09:36:02 +00:00
endif
2013-08-13 12:19:51 +00:00
let spath = s:session_dir . s:sep . sname
2013-04-23 16:00:42 +00:00
if !filereadable(spath)
call startify#session_write(fnameescape(spath))
echo 'Session saved under: '. spath
2013-04-23 16:00:42 +00:00
return
endif
2013-08-13 12:19:51 +00:00
2013-04-23 16:00:42 +00:00
echo 'Session already exists. Overwrite? [y/n]' | redraw
if nr2char(getchar()) == 'y'
call startify#session_write(fnameescape(spath))
echo 'Session saved under: '. spath
2013-04-23 16:00:42 +00:00
else
echo 'Did NOT save the session!'
2013-04-23 14:41:02 +00:00
endif
endfunction
2015-01-05 21:06:20 +00:00
" Function: #session_close {{{1
function! startify#session_close() abort
if exists('v:this_session') && filewritable(v:this_session)
call startify#session_write(fnameescape(v:this_session))
let v:this_session = ''
endif
call startify#session_delete_buffers()
Startify
endfunction
" Function: #session_write {{{1
function! startify#session_write(spath)
" if this function is called while being in the Startify buffer
" (by loading another session or running :SSave/:SLoad directly)
" switch back to the previous buffer before saving the session
if &filetype == 'startify'
let callingbuffer = bufnr('#')
if callingbuffer > 0
execute 'buffer' callingbuffer
endif
endif
" prevent saving already deleted buffers that were in the arglist
for arg in argv()
if !buflisted(arg)
execute 'silent! argdelete' fnameescape(arg)
endif
endfor
let ssop = &sessionoptions
set sessionoptions-=options
try
execute 'mksession!' a:spath
catch
echohl ErrorMsg
echomsg v:exception
echohl NONE
return
finally
let &sessionoptions = ssop
endtry
if exists('g:startify_session_remove_lines')
\ || exists('g:startify_session_savevars')
\ || exists('g:startify_session_savecmds')
execute 'split' a:spath
" remove lines from the session file
if exists('g:startify_session_remove_lines')
for pattern in g:startify_session_remove_lines
execute 'silent global/'. pattern .'/delete _'
endfor
endif
" put existing variables from savevars into session file
if exists('g:startify_session_savevars')
call append(line('$')-3, map(filter(copy(g:startify_session_savevars), 'exists(v:val)'), '"let ". v:val ." = ". strtrans(string(eval(v:val)))'))
endif
" put commands from savecmds into session file
if exists('g:startify_session_savecmds')
call append(line('$')-3, g:startify_session_savecmds)
endif
setlocal bufhidden=delete
silent update
silent hide
endif
call s:create_last_session_link(a:spath)
endfunction
2013-07-18 23:27:01 +00:00
" Function: #session_delete {{{1
function! startify#session_delete(...) abort
2013-05-13 17:53:44 +00:00
if !isdirectory(s:session_dir)
echo 'The session directory does not exist: '. s:session_dir
2013-04-24 13:23:39 +00:00
return
2013-05-25 09:08:22 +00:00
elseif empty(startify#session_list_as_string(''))
echo 'There are no sessions...'
return
2013-04-24 13:23:39 +00:00
endif
2013-08-13 12:19:51 +00:00
2014-11-20 13:21:01 +00:00
call inputsave()
let spath = s:session_dir . s:sep . (exists('a:1')
2013-04-24 13:01:43 +00:00
\ ? a:1
2013-07-18 23:27:01 +00:00
\ : input('Delete this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string'))
2013-04-24 13:01:43 +00:00
\ | redraw
2014-11-20 13:21:01 +00:00
call inputrestore()
2013-08-13 12:19:51 +00:00
2013-07-18 23:27:01 +00:00
echo 'Really delete '. spath .'? [y/n]' | redraw
if (nr2char(getchar()) == 'y')
if delete(spath) == 0
echo 'Deleted session '. spath .'!'
else
echo 'Deletion failed!'
endif
2013-04-23 14:41:02 +00:00
else
2013-07-18 23:27:01 +00:00
echo 'Deletion aborted!'
2013-04-23 14:41:02 +00:00
endif
endfunction
" Function: #session_delete_buffers {{{1
function! startify#session_delete_buffers() abort
if !s:delete_buffers
return
endif
let n = 1
while n <= bufnr('$')
if buflisted(n)
silent execute 'bdelete' n
endif
let n += 1
endwhile
endfunction
2013-07-18 23:08:10 +00:00
" Function: #session_list {{{1
2013-05-25 09:08:22 +00:00
function! startify#session_list(lead, ...) abort
return filter(map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")'), 'v:val !=# "__LAST__"')
2013-05-25 09:08:22 +00:00
endfunction
2013-07-18 23:08:10 +00:00
" Function: #session_list_as_string {{{1
2013-05-25 09:08:22 +00:00
function! startify#session_list_as_string(lead, ...) abort
return join(filter(map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")'), 'v:val !=# "__LAST__"'), "\n")
2013-05-25 09:08:22 +00:00
endfunction
2015-06-02 21:18:36 +00:00
" Function: #debug {{{1
function! startify#debug()
2015-06-02 07:18:05 +00:00
if exists('s:entries')
for k in sort(keys(s:entries))
echomsg '['. k .'] = '. string(s:entries[k])
endfor
endif
endfunction
" Function: #open_buffers {{{1
function! startify#open_buffers(...) abort
2015-06-01 15:21:52 +00:00
if exists('a:1') " used in mappings
call s:open_buffer(s:entries[a:1])
2015-06-02 06:55:11 +00:00
return
endif
let marked = filter(copy(s:entries), 'v:val.marked')
2015-06-01 15:21:52 +00:00
if empty(marked) " open current entry
call s:open_buffer(s:entries[line('.')])
2015-06-02 06:55:11 +00:00
return
endif
enew
setlocal nobuflisted
2015-06-01 15:21:52 +00:00
" Open all marked entries.
for entry in sort(values(marked), 's:sort_by_tick')
call s:open_buffer(entry)
endfor
2015-08-20 07:27:31 +00:00
wincmd =
endfunction
" Function: s:open_buffer {{{1
function! s:open_buffer(entry)
if a:entry.type == 'special'
execute a:entry.cmd
elseif a:entry.type == 'session'
execute a:entry.cmd a:entry.path
elseif a:entry.type == 'file'
if line2byte('$') == -1
execute 'edit' a:entry.path
else
2015-08-20 07:27:31 +00:00
if a:entry.cmd == 'tabnew'
wincmd =
endif
execute a:entry.cmd a:entry.path
2015-06-02 06:55:11 +00:00
endif
call s:check_user_options()
endif
endfunction
2014-11-23 09:30:25 +00:00
" Function: s:display_by_path {{{1
function! s:display_by_path(path_prefix, path_format) abort
let oldfiles = call(get(g:, 'startify_enable_unsafe') ? 's:filter_oldfiles_unsafe' : 's:filter_oldfiles',
\ [a:path_prefix, a:path_format])
2014-11-26 15:04:25 +00:00
let entry_format = "' ['. index .']'. repeat(' ', (3 - strlen(index)))"
if exists('*WebDevIconsGetFileTypeSymbol') " support for vim-devicons
let entry_format .= ". '('. WebDevIconsGetFileTypeSymbol(entry_path) .') '. entry_path"
else
let entry_format .= '. entry_path'
endif
if !empty(oldfiles)
2014-11-23 09:30:25 +00:00
if exists('s:last_message')
call s:print_section_header()
endif
2014-11-26 15:04:25 +00:00
for [absolute_path, entry_path] in oldfiles
2014-11-23 09:30:25 +00:00
let index = s:get_index_as_string(s:entry_number)
call append('$', eval(entry_format))
if has('win32')
let absolute_path = substitute(absolute_path, '\[', '\[[]', 'g')
endif
call s:register(line('$'), index, 'file', 'edit', absolute_path, s:nowait)
2014-11-23 09:30:25 +00:00
let s:entry_number += 1
endfor
2014-11-26 15:04:25 +00:00
2014-11-23 09:30:25 +00:00
call append('$', '')
endif
endfunction
" Function: s:filter_oldfiles {{{1
function! s:filter_oldfiles(path_prefix, path_format) abort
let path_prefix = '\V'. escape(a:path_prefix, '\')
let counter = s:numfiles
let entries = {}
let oldfiles = []
2013-07-30 08:26:40 +00:00
2014-11-25 11:30:53 +00:00
for fname in v:oldfiles
2014-11-23 09:30:25 +00:00
if counter <= 0
break
2013-10-10 11:05:50 +00:00
endif
2013-07-30 08:26:40 +00:00
let absolute_path = fnamemodify(resolve(fname), ":p")
2013-08-02 13:46:12 +00:00
" filter duplicates, bookmarks and entries from the skiplist
2014-11-23 09:30:25 +00:00
if has_key(entries, absolute_path)
\ || !filereadable(absolute_path)
\ || s:is_in_skiplist(absolute_path)
\ || match(absolute_path, path_prefix)
continue
endif
2013-07-30 08:26:40 +00:00
let entry_path = fnamemodify(absolute_path, a:path_format)
let entries[absolute_path] = 1
let counter -= 1
let oldfiles += [[fnameescape(absolute_path), entry_path]]
endfor
return oldfiles
endfun
" Function: s:filter_oldfiles_unsafe {{{1
function! s:filter_oldfiles_unsafe(path_prefix, path_format) abort
let path_prefix = '\V'. escape(a:path_prefix, '\')
let counter = s:numfiles
let entries = {}
let oldfiles = []
for fname in v:oldfiles
if counter <= 0
break
endif
let absolute_path = glob(fnamemodify(fname, ":p"))
if empty(absolute_path)
\ || has_key(entries, absolute_path)
\ || s:is_in_skiplist(absolute_path)
\ || match(absolute_path, path_prefix)
continue
endif
let entry_path = fnamemodify(absolute_path, a:path_format)
2014-11-23 09:30:25 +00:00
let entries[absolute_path] = 1
let counter -= 1
let oldfiles += [[fnameescape(absolute_path), entry_path]]
endfor
2014-11-23 09:30:25 +00:00
return oldfiles
endfun
2013-07-18 23:27:01 +00:00
" Function: s:show_dir {{{1
2014-11-23 09:30:25 +00:00
function! s:show_dir() abort
return s:display_by_path(getcwd(), ':.')
endfunction
" Function: s:show_files {{{1
2014-11-23 09:30:25 +00:00
function! s:show_files() abort
return s:display_by_path('', s:relative_path)
endfunction
2013-07-18 23:27:01 +00:00
" Function: s:show_sessions {{{1
2014-11-23 09:30:25 +00:00
function! s:show_sessions() abort
let sfiles = filter(split(globpath(s:session_dir, '*'), '\n'),
\ 'v:val !~# "x\.vim$" && v:val !~# "__LAST__$"')
2013-07-30 08:26:40 +00:00
if empty(sfiles)
2013-10-10 11:05:50 +00:00
if exists('s:last_message')
unlet s:last_message
endif
2014-11-26 15:04:25 +00:00
return
2013-07-18 23:27:01 +00:00
endif
2014-11-26 15:04:25 +00:00
2013-10-10 11:05:50 +00:00
if exists('s:last_message')
2013-10-22 11:01:32 +00:00
call s:print_section_header()
2013-10-10 11:05:50 +00:00
endif
2014-11-26 15:04:25 +00:00
for i in range(len(sfiles))
2014-11-23 09:30:25 +00:00
let index = s:get_index_as_string(s:entry_number)
let fname = fnamemodify(sfiles[i], ':t')
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
if has('win32')
let fname = substitute(fname, '\[', '\[[]', 'g')
endif
call s:register(line('$'), index, 'session', 'SLoad', fname, s:nowait)
2014-11-23 09:30:25 +00:00
let s:entry_number += 1
2013-07-18 23:27:01 +00:00
endfor
2014-11-26 15:04:25 +00:00
2013-09-01 18:03:55 +00:00
call append('$', '')
2013-07-18 23:27:01 +00:00
endfunction
" Function: s:show_bookmarks {{{1
2014-11-23 09:30:25 +00:00
function! s:show_bookmarks() abort
2014-11-26 15:04:25 +00:00
if !exists('g:startify_bookmarks') || empty(g:startify_bookmarks)
2014-11-23 09:30:25 +00:00
return
2014-03-31 19:31:34 +00:00
endif
2013-10-10 11:05:50 +00:00
2014-03-31 19:31:34 +00:00
if exists('s:last_message')
call s:print_section_header()
endif
2014-03-31 16:40:37 +00:00
for bookmark in g:startify_bookmarks
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
2014-03-31 19:31:34 +00:00
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
if has('win32')
2015-06-02 21:18:36 +00:00
let fname = substitute(fname, '\[', '\[[]', 'g')
endif
call s:register(line('$'), index, 'file', 'edit', fname, s:nowait)
unlet bookmark " avoid type mismatch for heterogeneous lists
2014-03-31 19:31:34 +00:00
endfor
call append('$', '')
2013-07-18 23:27:01 +00:00
endfunction
2013-05-25 09:08:22 +00:00
" Function: s:is_in_skiplist {{{1
function! s:is_in_skiplist(arg) abort
for regexp in s:skiplist
try
if a:arg =~# regexp
return 1
endif
catch
echohl WarningMsg
echomsg 'startify: Pattern '. string(regexp) .' threw an exception. Read :help g:startify_skiplist'
echohl NONE
endtry
2013-05-25 09:08:22 +00:00
endfor
endfunction
2013-07-18 23:27:01 +00:00
" Function: s:set_cursor {{{1
function! s:set_cursor() abort
2013-09-02 22:08:17 +00:00
let s:oldline = exists('s:newline') ? s:newline : 5
let s:newline = line('.')
" going up (-1) or down (1)
let movement = 2 * (s:newline > s:oldline) - 1
" skip section headers lines until an entry is found
while index(b:startify_section_header_lines, s:newline) != -1
let s:newline += movement
endwhile
2013-09-02 22:08:17 +00:00
" skip blank lines between lists
if empty(getline(s:newline))
let s:newline += movement
2013-06-26 18:27:10 +00:00
endif
" don't go beyond first or last entry
let s:newline = max([s:firstline, min([s:lastline, s:newline])])
call cursor(s:newline, 5)
2013-06-26 18:27:10 +00:00
endfunction
" Function: s:set_mappings {{{1
function! s:set_mappings() abort
execute "nnoremap <buffer>". s:nowait_string ."<silent> i :enew <bar> startinsert<cr>"
execute "nnoremap <buffer>". s:nowait_string ."<silent> <insert> :enew <bar> startinsert<cr>"
execute "nnoremap <buffer>". s:nowait_string ."<silent> b :call <sid>set_mark('B')<cr>"
execute "nnoremap <buffer>". s:nowait_string ."<silent> s :call <sid>set_mark('S')<cr>"
execute "nnoremap <buffer>". s:nowait_string ."<silent> t :call <sid>set_mark('T')<cr>"
execute "nnoremap <buffer>". s:nowait_string ."<silent> v :call <sid>set_mark('V')<cr>"
execute "nnoremap <buffer>". s:nowait_string ."<silent> <cr> :call startify#open_buffers()<cr>"
execute "nnoremap <buffer>". s:nowait_string ."<silent> <2-LeftMouse> :call startify#open_buffers()<cr>"
for k in keys(s:entries)
execute 'nnoremap <buffer><silent>'. s:entries[k].nowait s:entries[k].index
\ ':call startify#open_buffers('. string(k) .')<cr>'
endfor
" Prevent 'nnoremap j gj' mappings, since they would break navigation.
" (One can't leave the [x].)
if !empty(maparg('j', 'n'))
nnoremap <buffer> j j
endif
if !empty(maparg('k', 'n'))
nnoremap <buffer> k k
endif
endfunction
2013-05-13 20:50:13 +00:00
" Function: s:set_mark {{{1
2015-06-01 15:21:52 +00:00
function! s:set_mark(type, ...) abort
let index = expand('<cword>')
2015-06-01 15:21:52 +00:00
let line = exists('a:1') ? a:1 : line('.')
let entry = s:entries[line]
2013-08-09 10:18:06 +00:00
2015-06-02 06:55:11 +00:00
if entry.type != 'file'
2013-05-13 17:48:03 +00:00
return
endif
2013-08-09 10:18:06 +00:00
let default_cmds = {
\ 'B': 'edit',
\ 'S': 'split',
\ 'V': 'vsplit',
\ 'T': 'tabnew',
\ }
2013-05-13 17:48:03 +00:00
setlocal modifiable
2013-08-09 10:18:06 +00:00
if entry.marked && index[0] == a:type
let entry.cmd = 'edit'
let entry.marked = 0
execute 'normal! ci]'. entry.index
else
let entry.cmd = default_cmds[a:type]
let entry.marked = 1
let entry.tick = s:tick
let s:tick += 1
execute 'normal! ci]'. repeat(a:type, len(index))
2013-05-13 17:48:03 +00:00
endif
2013-08-09 10:18:06 +00:00
2013-05-13 17:48:03 +00:00
setlocal nomodifiable nomodified
endfunction
" Function: s:sort_by_tick {{{1
function! s:sort_by_tick(one, two)
return a:one.tick - a:two.tick
endfunction
" Function: s:check_user_options {{{1
function! s:check_user_options() abort
2013-08-10 08:41:27 +00:00
let path = expand('%')
let session = path . s:sep .'Session.vim'
" change to VCS root directory
if get(g:, 'startify_session_autoload') && filereadable(session)
execute 'source' session
elseif get(g:, 'startify_change_to_vcs_root')
call s:cd_to_vcs_root(path)
" change directory
elseif get(g:, 'startify_change_to_dir', 1)
2013-08-10 08:41:27 +00:00
if isdirectory(path)
lcd %
else
lcd %:p:h
endif
endif
endfunction
" Function: s:cd_to_vcs_root {{{1
function! s:cd_to_vcs_root(path) abort
let dir = fnamemodify(a:path, ':p:h')
for vcs in [ '.git', '.hg', '.bzr', '.svn' ]
let root = finddir(vcs, dir .';')
if !empty(root)
execute 'cd '. fnamemodify(root, ':h')
return
endif
endfor
endfunction
" Function: s:close {{{1
function! s:close() abort
if len(filter(range(0, bufnr('$')), 'buflisted(v:val)'))
if bufloaded(bufnr('#')) && bufnr('#') != bufnr('%')
2013-10-18 17:50:23 +00:00
buffer #
else
2013-10-18 17:50:23 +00:00
bnext
endif
else
quit
2013-07-18 23:27:01 +00:00
endif
endfunction
" Function: s:get_index_as_string {{{1
function! s:get_index_as_string(idx) abort
if exists('g:startify_custom_indices')
let listlen = len(g:startify_custom_indices)
return (a:idx < listlen) ? g:startify_custom_indices[a:idx] : string(a:idx - listlen)
else
return string(a:idx)
2013-05-13 17:48:03 +00:00
endif
endfunction
2013-10-22 11:01:32 +00:00
" Function: s:print_section_header {{{1
function! s:print_section_header() abort
$
let curline = line('.')
for lnum in range(curline, curline + len(s:last_message) + 1)
call add(b:startify_section_header_lines, lnum)
2013-10-22 11:01:32 +00:00
endfor
call append('$', s:last_message + [''])
2013-10-22 11:01:32 +00:00
unlet s:last_message
endfunction
2015-06-02 07:07:14 +00:00
" Function: s:register {{{1
2015-11-20 12:45:40 +00:00
function! s:register(line, index, type, cmd, path, wait)
2015-06-02 07:07:14 +00:00
let s:entries[a:line] = {
\ 'index': a:index,
\ 'type': a:type,
\ 'cmd': a:cmd,
\ 'path': a:path,
2015-11-20 12:45:40 +00:00
\ 'nowait': a:wait,
2015-06-02 07:07:14 +00:00
\ 'marked': 0,
\ }
endfunction
" Function: s:create_last_session_link {{{1
function! s:create_last_session_link(spath)
if !has('win32') && a:spath !~# '__LAST__$'
let cmd = printf('ln -sf %s %s',
\ shellescape(a:spath),
\ shellescape(fnamemodify(a:spath, ':h') .'/__LAST__'))
silent! call system(cmd)
if v:shell_error
echomsg "startify: Can't create 'last used session' symlink."
endif
endif
endfunction