diff --git a/README.md b/README.md index 9e2e74f..0948a43 100644 --- a/README.md +++ b/README.md @@ -246,7 +246,7 @@ Recently this plug-in switched from reimplementing [:mksession][mksession] to ac The documentation of the 34 functions below was extracted from -1 Vim scripts on June 17, 2014 at 21:38. +1 Vim scripts on June 18, 2014 at 22:45. ### Public API for the vim-session plug-in diff --git a/autoload/xolox/session.vim b/autoload/xolox/session.vim index 31059cd..2971522 100644 --- a/autoload/xolox/session.vim +++ b/autoload/xolox/session.vim @@ -356,10 +356,10 @@ function! s:check_special_window(session) endfunction function! s:jump_to_window(session, tabpage, window) + call add(a:session, a:window . 'wincmd w') if xolox#session#include_tabs() call add(a:session, 'tabnext ' . a:tabpage) endif - call add(a:session, a:window . 'wincmd w') endfunction function! s:nerdtree_persist() diff --git a/doc/session.txt b/doc/session.txt index 9ff3a5e..92503be 100644 --- a/doc/session.txt +++ b/doc/session.txt @@ -490,7 +490,7 @@ might take a while...) Function reference ~ The documentation of the 34 functions below was extracted from 1 Vim scripts on -June 17, 2014 at 21:38. +June 18, 2014 at 22:45. ------------------------------------------------------------------------------- *public-api-for-vim-session-plug-in*