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
|
2014-09-17 14:42:37 +00:00
|
|
|
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')
|
2014-11-23 16:39:51 +00:00
|
|
|
let s:relative_path = get(g:, 'startify_relative_path') ? ':.' : ':p:~'
|
2014-09-17 14:42:37 +00:00
|
|
|
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')))
|
|
|
|
|
2014-09-09 11:46:44 +00:00
|
|
|
let s:skiplist = get(g:, 'startify_skiplist', [
|
|
|
|
\ 'COMMIT_EDITMSG',
|
2015-04-20 00:45:54 +00:00
|
|
|
\ fnamemodify($VIMRUNTIME, ':p') .'/doc',
|
2014-09-09 11:46:44 +00:00
|
|
|
\ 'bundle/.*/doc',
|
|
|
|
\ ])
|
|
|
|
|
2013-08-10 07:05:02 +00:00
|
|
|
" Function: #get_separator {{{1
|
|
|
|
function! startify#get_separator() abort
|
|
|
|
return !exists('+shellslash') || &shellslash ? '/' : '\'
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
let s:sep = startify#get_separator()
|
2013-08-09 13:08:56 +00:00
|
|
|
|
2013-09-04 07:25:33 +00:00
|
|
|
" Function: #get_lastline {{{1
|
|
|
|
function! startify#get_lastline() abort
|
2014-11-15 08:32:20 +00:00
|
|
|
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
|
2014-11-13 20:01:45 +00:00
|
|
|
function! startify#insane_in_the_membrane() abort
|
2014-09-29 09:38:01 +00:00
|
|
|
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
|
2013-07-25 23:53:34 +00:00
|
|
|
if servname == v:servername
|
2013-05-13 17:48:03 +00:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
2013-07-18 23:51:02 +00:00
|
|
|
|
2014-09-29 09:38:01 +00:00
|
|
|
setlocal
|
|
|
|
\ bufhidden=wipe
|
|
|
|
\ buftype=nofile
|
|
|
|
\ nobuflisted
|
|
|
|
\ nocursorcolumn
|
|
|
|
\ nocursorline
|
|
|
|
\ nolist
|
|
|
|
\ nonumber
|
|
|
|
\ noswapfile
|
2014-11-16 13:06:25 +00:00
|
|
|
if empty(&statusline)
|
|
|
|
setlocal statusline=\ startify
|
|
|
|
endif
|
2013-07-25 23:53:34 +00:00
|
|
|
if v:version >= 703
|
2013-05-13 17:48:03 +00:00
|
|
|
setlocal norelativenumber
|
|
|
|
endif
|
|
|
|
|
2013-07-11 11:03:42 +00:00
|
|
|
if exists('g:startify_custom_header')
|
|
|
|
call append('$', g:startify_custom_header)
|
|
|
|
endif
|
|
|
|
|
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
|
|
|
|
|
2014-11-23 09:30:25 +00:00
|
|
|
let s:entry_number = 0
|
2014-09-17 15:22:28 +00:00
|
|
|
if filereadable('Session.vim')
|
2013-08-10 07:05:02 +00:00
|
|
|
call append('$', [' [0] '. getcwd() . s:sep .'Session.vim', ''])
|
2014-11-23 16:52:25 +00:00
|
|
|
execute 'nnoremap <silent><buffer> 0 :call startify#session_delete_buffers() <bar> source Session.vim<cr>'
|
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
|
2013-08-08 15:53:40 +00:00
|
|
|
endif
|
|
|
|
|
2014-08-20 16:53:13 +00:00
|
|
|
if empty(v:oldfiles)
|
|
|
|
echohl WarningMsg
|
2014-11-25 11:14:56 +00:00
|
|
|
echomsg "startify: Can't read viminfo file. Read :help startify-faq-02"
|
2014-08-20 16:53:13 +00:00
|
|
|
echohl None
|
|
|
|
endif
|
|
|
|
|
2014-12-17 11:57:01 +00:00
|
|
|
let b:startify_section_header_lines = []
|
2014-09-17 10:34:12 +00:00
|
|
|
let s:lists = get(g:, 'startify_list_order', [
|
2014-11-25 11:14:56 +00:00
|
|
|
\ [' Most recently used files:'],
|
2014-09-17 10:34:12 +00:00
|
|
|
\ 'files',
|
2014-11-25 11:14:56 +00:00
|
|
|
\ [' Most recently used files in the current directory:'],
|
2014-09-17 10:34:12 +00:00
|
|
|
\ 'dir',
|
|
|
|
\ [' My sessions:'],
|
|
|
|
\ 'sessions',
|
|
|
|
\ [' My 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>'])
|
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
|
|
|
|
|
2015-04-22 09:11:41 +00:00
|
|
|
call s:set_mappings()
|
2014-09-05 19:46:43 +00:00
|
|
|
call cursor(s:firstline + (s:show_special ? 2 : 0), 5)
|
2014-09-17 14:42:37 +00:00
|
|
|
autocmd startify CursorMoved <buffer> call s:set_cursor()
|
2015-04-22 09:11:41 +00:00
|
|
|
|
2014-11-15 08:32:20 +00:00
|
|
|
set filetype=startify
|
2014-09-11 15:50:01 +00:00
|
|
|
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)
|
2014-09-05 17:15:34 +00:00
|
|
|
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(''))
|
2014-09-05 17:15:34 +00:00
|
|
|
echomsg 'There are no sessions...'
|
2013-05-02 20:06:18 +00:00
|
|
|
return
|
|
|
|
endif
|
2014-11-20 13:21:01 +00:00
|
|
|
call inputsave()
|
2013-08-10 07:05:02 +00:00
|
|
|
let spath = s:session_dir . s:sep . (exists('a:1')
|
2013-05-02 19:16:26 +00:00
|
|
|
\ ? a:1
|
2013-07-18 23:27:01 +00:00
|
|
|
\ : input('Load this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string'))
|
2013-05-02 19:16:26 +00:00
|
|
|
\ | redraw
|
2014-11-20 13:21:01 +00:00
|
|
|
call inputrestore()
|
2013-07-18 23:27:01 +00:00
|
|
|
if filereadable(spath)
|
2014-09-05 17:15:34 +00:00
|
|
|
if get(g:, 'startify_session_persistence')
|
|
|
|
\ && exists('v:this_session')
|
|
|
|
\ && 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)
|
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
|
|
|
|
2015-04-16 08:39:02 +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
|
|
|
|
2013-08-10 07:05:02 +00:00
|
|
|
let spath = s:session_dir . s:sep . sname
|
2013-04-23 16:00:42 +00:00
|
|
|
if !filereadable(spath)
|
2014-06-11 10:14:21 +00:00
|
|
|
call startify#session_write(fnameescape(spath))
|
2013-09-24 15:29:23 +00:00
|
|
|
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'
|
2014-06-11 10:14:21 +00:00
|
|
|
call startify#session_write(fnameescape(spath))
|
2013-09-24 15:29:23 +00:00
|
|
|
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
|
|
|
|
|
2014-06-11 10:14:21 +00:00
|
|
|
" Function: #session_write {{{1
|
|
|
|
function! startify#session_write(spath)
|
|
|
|
let ssop = &sessionoptions
|
|
|
|
try
|
2014-11-13 20:01:45 +00:00
|
|
|
" if this function is called while being in the Startify buffer
|
|
|
|
" (by loading another session or running :SSave/:SLoad directly)
|
2014-09-07 16:49:49 +00:00
|
|
|
" switch back to the previous buffer before saving the session
|
2014-11-13 20:01:45 +00:00
|
|
|
if &filetype == 'startify'
|
|
|
|
let callingbuffer = bufnr('#')
|
|
|
|
if callingbuffer > 0
|
|
|
|
execute 'buffer' callingbuffer
|
2014-09-07 16:49:49 +00:00
|
|
|
endif
|
|
|
|
endif
|
2014-09-05 17:38:01 +00:00
|
|
|
" prevent saving already deleted buffers that were in the arglist
|
2014-09-21 12:08:40 +00:00
|
|
|
for arg in argv()
|
|
|
|
if !buflisted(arg)
|
|
|
|
execute 'argdelete' fnameescape(arg)
|
|
|
|
endif
|
|
|
|
endfor
|
2014-06-11 10:14:21 +00:00
|
|
|
set sessionoptions-=options
|
|
|
|
execute 'mksession!' a:spath
|
|
|
|
catch
|
|
|
|
execute 'echoerr' string(v:exception)
|
|
|
|
finally
|
|
|
|
let &sessionoptions = ssop
|
|
|
|
endtry
|
|
|
|
|
|
|
|
if exists('g:startify_session_savevars') || exists('g:startify_session_savecmds')
|
|
|
|
execute 'split' a:spath
|
|
|
|
|
|
|
|
" put existing variables from savevars into session file
|
2014-10-23 10:13:00 +00:00
|
|
|
call append(line('$')-3, map(filter(copy(get(g:, 'startify_session_savevars', [])), 'exists(v:val)'), '"let ". v:val ." = ". strtrans(string(eval(v:val)))'))
|
2014-06-11 10:14:21 +00:00
|
|
|
|
|
|
|
" put commands from savecmds into session file
|
|
|
|
call append(line('$')-3, get(g:, 'startify_session_savecmds', []))
|
|
|
|
|
|
|
|
setlocal bufhidden=delete
|
|
|
|
silent update
|
|
|
|
silent hide
|
|
|
|
endif
|
|
|
|
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(''))
|
2013-05-02 20:25:47 +00:00
|
|
|
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()
|
2013-08-10 07:05:02 +00:00
|
|
|
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
|
|
|
|
|
2014-02-20 14:30:59 +00:00
|
|
|
" 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
|
2013-05-30 07:57:59 +00:00
|
|
|
return map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")')
|
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
|
2013-05-30 07:57:59 +00:00
|
|
|
return join(map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")'), "\n")
|
2013-05-25 09:08:22 +00:00
|
|
|
endfunction
|
|
|
|
|
2014-11-22 17:15:29 +00:00
|
|
|
" Function: #open_buffers {{{1
|
|
|
|
function! startify#open_buffers() abort
|
|
|
|
" markers found; open one or more buffers
|
|
|
|
if exists('s:marked') && !empty(s:marked)
|
|
|
|
enew
|
|
|
|
setlocal nobuflisted
|
|
|
|
|
|
|
|
for val in values(s:marked)
|
|
|
|
let [path, type] = val[1:2]
|
|
|
|
let path = fnameescape(path)
|
|
|
|
|
|
|
|
if line2byte('$') == -1
|
|
|
|
" open in current window
|
|
|
|
execute 'edit' path
|
|
|
|
elseif type == 'S'
|
|
|
|
" open in split
|
|
|
|
execute 'split' path
|
|
|
|
elseif type == 'V'
|
|
|
|
" open in vsplit
|
|
|
|
execute 'vsplit' path
|
|
|
|
elseif type == 'T'
|
|
|
|
" open in tab
|
|
|
|
execute 'tabnew' path
|
|
|
|
else
|
|
|
|
" open in current window
|
|
|
|
execute 'edit' path
|
|
|
|
endif
|
|
|
|
|
|
|
|
call s:check_user_options()
|
|
|
|
endfor
|
|
|
|
|
|
|
|
" remove markers for next instance of :Startify
|
|
|
|
if exists('s:marked')
|
|
|
|
unlet s:marked
|
|
|
|
endif
|
|
|
|
" no markers found; open a single buffer
|
|
|
|
else
|
|
|
|
try
|
|
|
|
execute 'normal' expand('<cword>')
|
|
|
|
catch /E832/ " don't ask for undo encryption key twice
|
|
|
|
edit
|
|
|
|
catch /E325/ " swap file found
|
|
|
|
endtry
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2014-03-31 08:18:58 +00:00
|
|
|
|
2014-11-23 09:30:25 +00:00
|
|
|
" Function: s:display_by_path {{{1
|
2014-11-23 16:39:51 +00:00
|
|
|
function! s:display_by_path(path_prefix, path_format) abort
|
2015-03-06 15:11:19 +00:00
|
|
|
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
|
|
|
|
2014-11-23 16:39:51 +00:00
|
|
|
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
|
|
|
|
2014-11-23 16:39:51 +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)
|
2014-11-23 16:39:51 +00:00
|
|
|
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . entry_path)
|
|
|
|
execute 'nnoremap <buffer><silent>' index ':edit' escape(absolute_path, ' ') '<bar> call <sid>check_user_options()<cr>'
|
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
|
2014-11-23 16:39:51 +00:00
|
|
|
function! s:filter_oldfiles(path_prefix, path_format) abort
|
2015-01-30 12:08:00 +00:00
|
|
|
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
|
2014-11-22 13:23:39 +00:00
|
|
|
break
|
2013-10-10 11:05:50 +00:00
|
|
|
endif
|
2013-07-30 08:26:40 +00:00
|
|
|
|
2014-11-23 09:30:25 +00:00
|
|
|
let absolute_path = glob(fnameescape(fnamemodify(resolve(fname), ":p")))
|
2013-08-02 13:46:12 +00:00
|
|
|
|
2014-03-31 08:18:58 +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)
|
|
|
|
\ || (exists('g:startify_bookmarks') && s:is_bookmark(absolute_path))
|
2015-03-06 15:11:19 +00:00
|
|
|
\ || match(absolute_path, path_prefix)
|
2014-03-31 08:18:58 +00:00
|
|
|
continue
|
|
|
|
endif
|
2013-07-30 08:26:40 +00:00
|
|
|
|
2015-03-06 15:11:19 +00:00
|
|
|
let entry_path = fnamemodify(absolute_path, a:path_format)
|
|
|
|
let entries[absolute_path] = 1
|
|
|
|
let counter -= 1
|
|
|
|
let oldfiles += [[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(fnameescape(fnamemodify(fname, ":p")))
|
|
|
|
if empty(absolute_path)
|
|
|
|
\ || has_key(entries, absolute_path)
|
|
|
|
\ || s:is_in_skiplist(absolute_path)
|
|
|
|
\ || match(absolute_path, path_prefix)
|
2014-11-22 13:23:39 +00:00
|
|
|
continue
|
|
|
|
endif
|
|
|
|
|
2014-11-23 16:39:51 +00:00
|
|
|
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 += [[absolute_path, entry_path]]
|
2014-11-22 13:23:39 +00:00
|
|
|
endfor
|
|
|
|
|
2014-11-23 09:30:25 +00:00
|
|
|
return oldfiles
|
|
|
|
endfun
|
2013-07-18 23:27:01 +00:00
|
|
|
|
2014-11-22 13:23:39 +00:00
|
|
|
" Function: s:show_dir {{{1
|
2014-11-23 09:30:25 +00:00
|
|
|
function! s:show_dir() abort
|
|
|
|
" let cwd = escape(getcwd(), '\')
|
2014-11-23 16:39:51 +00:00
|
|
|
return s:display_by_path(getcwd(), ':.')
|
2014-11-22 13:23:39 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Function: s:show_files {{{1
|
2014-11-23 09:30:25 +00:00
|
|
|
function! s:show_files() abort
|
2014-11-23 16:39:51 +00:00
|
|
|
return s:display_by_path('', s:relative_path)
|
2014-11-22 13:23:39 +00:00
|
|
|
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
|
2013-07-30 08:26:40 +00:00
|
|
|
let sfiles = split(globpath(s:session_dir, '*'), '\n')
|
|
|
|
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
|
|
|
|
2014-09-01 17:09:52 +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)
|
2014-09-02 20:46:48 +00:00
|
|
|
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(sfiles[i], ':t'))
|
|
|
|
execute 'nnoremap <buffer><silent>' index ':SLoad' fnamemodify(sfiles[i], ':t') '<cr>'
|
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
|
|
|
|
2014-03-31 19:31:34 +00:00
|
|
|
for fname in g:startify_bookmarks
|
2014-11-24 20:46:24 +00:00
|
|
|
let index = s:get_index_as_string(s:entry_number)
|
2014-03-31 19:31:34 +00:00
|
|
|
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
|
2014-07-13 06:24:29 +00:00
|
|
|
execute 'nnoremap <buffer><silent>' index ':edit' fnameescape(fname) '<bar> call <sid>check_user_options()<cr>'
|
2014-11-23 09:30:25 +00:00
|
|
|
let s:entry_number += 1
|
2014-03-31 19:31:34 +00:00
|
|
|
endfor
|
|
|
|
|
|
|
|
call append('$', '')
|
2013-07-18 23:27:01 +00:00
|
|
|
endfunction
|
2013-07-18 22:39:51 +00:00
|
|
|
|
2013-05-25 09:08:22 +00:00
|
|
|
" Function: s:is_in_skiplist {{{1
|
|
|
|
function! s:is_in_skiplist(arg) abort
|
2014-09-09 11:46:44 +00:00
|
|
|
for regexp in s:skiplist
|
2013-05-25 09:08:22 +00:00
|
|
|
if (a:arg =~# regexp)
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Function: s:is_bookmark {{{1
|
|
|
|
function! s:is_bookmark(arg) abort
|
|
|
|
for foo in map(filter(copy(g:startify_bookmarks), '!isdirectory(v:val)'), 'resolve(fnamemodify(v:val, ":p"))')
|
|
|
|
if foo == a:arg
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
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('.')
|
2013-10-22 12:42:31 +00:00
|
|
|
|
2013-10-24 05:33:19 +00:00
|
|
|
" going up (-1) or down (1)
|
|
|
|
let movement = 2 * (s:newline > s:oldline) - 1
|
|
|
|
|
|
|
|
" skip section headers lines until an entry is found
|
2014-12-17 11:57:01 +00:00
|
|
|
while index(b:startify_section_header_lines, s:newline) != -1
|
2013-10-24 05:33:19 +00:00
|
|
|
let s:newline += movement
|
|
|
|
endwhile
|
2013-09-02 22:08:17 +00:00
|
|
|
|
2013-10-24 05:33:19 +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
|
2013-09-20 09:07:34 +00:00
|
|
|
|
2013-10-24 05:33:19 +00:00
|
|
|
" don't go beyond first or last entry
|
|
|
|
let s:newline = max([s:firstline, min([s:lastline, s:newline])])
|
|
|
|
|
2013-09-20 09:07:34 +00:00
|
|
|
call cursor(s:newline, 5)
|
2013-06-26 18:27:10 +00:00
|
|
|
endfunction
|
|
|
|
|
2015-04-22 09:11:41 +00:00
|
|
|
" Function: s:set_mappings {{{1
|
|
|
|
function! s:set_mappings() abort
|
|
|
|
nnoremap <buffer><silent> e :enew<cr>
|
|
|
|
nnoremap <buffer><silent> i :enew <bar> startinsert<cr>
|
|
|
|
nnoremap <buffer><silent> <insert> :enew <bar> startinsert<cr>
|
|
|
|
nnoremap <buffer><silent> b :call <sid>set_mark('B')<cr>
|
|
|
|
nnoremap <buffer><silent> s :call <sid>set_mark('S')<cr>
|
|
|
|
nnoremap <buffer><silent> t :call <sid>set_mark('T')<cr>
|
|
|
|
nnoremap <buffer><silent> v :call <sid>set_mark('V')<cr>
|
|
|
|
nnoremap <buffer><silent> <cr> :call startify#open_buffers()<cr>
|
|
|
|
nnoremap <buffer><silent> <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+')<cr>
|
|
|
|
nnoremap <buffer><silent> q :call <sid>close()<cr>
|
|
|
|
|
|
|
|
" Prevent 'nnoremap j gj' mappings, since they would break navigation.
|
|
|
|
" (One can't leave the [x].)
|
|
|
|
if !empty(mapcheck('h', 'n'))
|
|
|
|
nnoremap <buffer> h h
|
|
|
|
endif
|
|
|
|
if !empty(mapcheck('j', 'n'))
|
|
|
|
nnoremap <buffer> j j
|
|
|
|
endif
|
|
|
|
if !empty(mapcheck('k', 'n'))
|
|
|
|
nnoremap <buffer> k k
|
|
|
|
endif
|
|
|
|
if !empty(mapcheck('l', 'n'))
|
|
|
|
nnoremap <buffer> l l
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-05-13 20:50:13 +00:00
|
|
|
" Function: s:set_mark {{{1
|
2013-05-13 17:48:03 +00:00
|
|
|
"
|
|
|
|
" Markers are saved in the s:marked dict using the follow format:
|
2013-08-09 10:18:06 +00:00
|
|
|
" - s:marked[0]: ID
|
|
|
|
" - s:marked[1]: path
|
|
|
|
" - s:marked[2]: type (buffer, split, vsplit)
|
2013-05-13 17:48:03 +00:00
|
|
|
"
|
2013-05-13 20:50:13 +00:00
|
|
|
function! s:set_mark(type) abort
|
2013-05-13 17:48:03 +00:00
|
|
|
if !exists('s:marked')
|
2013-09-01 18:03:55 +00:00
|
|
|
let s:marked = {}
|
2013-05-13 17:48:03 +00:00
|
|
|
endif
|
2013-08-09 10:18:06 +00:00
|
|
|
|
2014-09-02 21:12:52 +00:00
|
|
|
let [id, path] = matchlist(getline('.'), '\v\[(.{-})\]\s+(.*)')[1:2]
|
2014-08-21 08:31:04 +00:00
|
|
|
let path = fnamemodify(path, ':p')
|
2013-08-09 10:18:06 +00:00
|
|
|
|
2013-08-15 11:44:19 +00:00
|
|
|
if path =~# '\V<empty buffer>\|<quit>' || path =~# '^\w\+$'
|
2013-05-13 17:48:03 +00:00
|
|
|
return
|
|
|
|
endif
|
2013-08-09 10:18:06 +00:00
|
|
|
|
2013-05-13 17:48:03 +00:00
|
|
|
setlocal modifiable
|
2013-08-09 10:18:06 +00:00
|
|
|
|
|
|
|
" set markers
|
2013-08-22 17:14:34 +00:00
|
|
|
if id =~# '[BSTV]'
|
2013-08-09 10:18:06 +00:00
|
|
|
" replace marker by old ID
|
|
|
|
execute 'normal! ci]'. remove(s:marked, line('.'))[0]
|
2013-05-13 17:48:03 +00:00
|
|
|
else
|
2013-08-09 10:18:06 +00:00
|
|
|
" save ID and replace it by the marker of the given type
|
|
|
|
let s:marked[line('.')] = [id, path, a:type]
|
|
|
|
execute 'normal! ci]'. repeat(a:type, len(id))
|
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
|
|
|
|
|
2013-08-10 07:05:02 +00:00
|
|
|
" 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'
|
|
|
|
|
2013-08-25 01:31:53 +00:00
|
|
|
" change to VCS root directory
|
2015-01-14 10:46:16 +00:00
|
|
|
if get(g:, 'startify_session_autoload') && filereadable(session)
|
|
|
|
execute 'source' session
|
|
|
|
elseif get(g:, 'startify_change_to_vcs_root')
|
2013-08-25 01:31:53 +00:00
|
|
|
call s:cd_to_vcs_root(path)
|
2013-08-10 07:05:02 +00:00
|
|
|
" change directory
|
|
|
|
elseif get(g:, 'startify_change_to_dir', 1)
|
2013-08-10 08:41:27 +00:00
|
|
|
if isdirectory(path)
|
2013-08-09 13:08:56 +00:00
|
|
|
lcd %
|
|
|
|
else
|
|
|
|
lcd %:h
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-08-25 01:31:53 +00:00
|
|
|
" 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
|
|
|
|
|
2013-07-25 23:53:34 +00:00
|
|
|
" Function: s:close {{{1
|
|
|
|
function! s:close() abort
|
|
|
|
if len(filter(range(0, bufnr('$')), 'buflisted(v:val)'))
|
2014-11-24 09:45:48 +00:00
|
|
|
if bufloaded(bufnr('#')) && bufnr('#') != bufnr('%')
|
2013-10-18 17:50:23 +00:00
|
|
|
buffer #
|
2013-07-25 23:53:34 +00:00
|
|
|
else
|
2013-10-18 17:50:23 +00:00
|
|
|
bnext
|
2013-07-25 23:53:34 +00:00
|
|
|
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-08-04 15:16:43 +00:00
|
|
|
|
2013-10-22 11:01:32 +00:00
|
|
|
" Function: s:print_section_header {{{1
|
|
|
|
function! s:print_section_header() abort
|
|
|
|
$
|
|
|
|
let curline = line('.')
|
|
|
|
|
2013-10-22 11:36:29 +00:00
|
|
|
for lnum in range(curline, curline + len(s:last_message) + 1)
|
2014-12-17 11:57:01 +00:00
|
|
|
call add(b:startify_section_header_lines, lnum)
|
2013-10-22 11:01:32 +00:00
|
|
|
endfor
|
|
|
|
|
2013-10-22 11:36:29 +00:00
|
|
|
call append('$', s:last_message + [''])
|
2013-10-22 11:01:32 +00:00
|
|
|
unlet s:last_message
|
|
|
|
endfunction
|