Skip to content

Commit

Permalink
Merge pull request #93: Correct order of tab and window restore commands
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Jun 18, 2014
2 parents 8e124c9 + 81dc04c commit 70cbfa9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -246,7 +246,7 @@ Recently this plug-in switched from reimplementing [:mksession][mksession] to ac
<!-- Start of generated documentation -->

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

Expand Down
2 changes: 1 addition & 1 deletion autoload/xolox/session.vim
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion doc/session.txt
Expand Up @@ -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*
Expand Down

0 comments on commit 70cbfa9

Please sign in to comment.