From 7107538da0c5c2a119a607f0d12af03450ec3807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98ystein=20Walle?= Date: Sun, 4 Aug 2013 17:16:43 +0200 Subject: [PATCH] Optionally restore cursor position This uses the '" mark to restore the last cursor position when opening a file, implemented as BufReadPost autocmd. --- autoload/startify.vim | 20 ++++++++++++++++---- doc/startify.txt | 11 ++++++++++- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index bbb9215..d0d5703 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -9,10 +9,11 @@ endif let g:autoloaded_startify = 1 " Init: values {{{1 -let s:cmd = (get(g:, 'startify_change_to_dir', 1) ? ' lcd %:h' : '') . '' -let s:numfiles = get(g:, 'startify_files_number', 10) -let s:show_special = get(g:, 'startify_enable_special', 1) -let s:session_dir = resolve(expand(get(g:, 'startify_session_dir', +let s:cmd = (get(g:, 'startify_change_to_dir', 1) ? ' lcd %:h' : '') . '' +let s:numfiles = get(g:, 'startify_files_number', 10) +let s:show_special = get(g:, 'startify_enable_special', 1) +let s:restore_position = get(g:, 'startify_restore_position') +let s:session_dir = resolve(expand(get(g:, 'startify_session_dir', \ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session'))) " Function: #insane_in_the_membrane {{{1 @@ -71,6 +72,9 @@ function! startify#insane_in_the_membrane() abort endif autocmd startify CursorMoved call s:set_cursor() + if s:restore_position + autocmd startify BufReadPost * call s:restore_position() + endif 1 call cursor((s:show_special ? 4 : 2) + s:offset_header, 5) @@ -412,4 +416,12 @@ function! s:get_index_as_string(idx) abort endif endfunction +" Function: s:restore_position {{{1 +function! s:restore_position() abort + autocmd! startify * + if line("'\"") > 0 && line("'\"") <= line('$') + call cursor(getpos("'\"")[1:]) + endif +endfunction + " vim: et sw=2 sts=2 diff --git a/doc/startify.txt b/doc/startify.txt index d96b593..c92374a 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -182,6 +182,14 @@ Default: does not exist Show and . +============- + + let g:startify_restore_position = 0 + +Jump to the last cursor position when opening a file. You don't need this, if +you already have this in your vimrc: |last-position-jump|. + + ============- let g:startify_custom_indices = [] @@ -319,7 +327,8 @@ getting feedback! Same for issues or feature requests. Thank you for flying mhi airlines. Get the Vim on! -You can also follow me on Twitter: [@_mhinz_](https://twitter.com/_mhinz_) +You can also follow me on Twitter: @_mhinz_ + ============================================================================== 8. License *startify-license*