sponsor Vim development Vim logo Vim Book Ad

Session-Viminfo-Management : The plug-in improves upon Vim's built-in :mksession and :wviminfo commands.

 script karma  Rating 0/0, Downloaded by 752  Comments, bugs, improvements  Vim wiki

created by
Brant Chen
 
script type
utility
 
description
The plug-in improves upon Vim's built-in :mksession and :wviminfo commands.
It provide great convinience to save and load your Vim session and viminfo files automatically.

Typically, you can save your Vim session and viminfo files in one command and load them efficiently.
Even better, it can automatically load/save vim session and viminfo files when entering vim and leaving vim environment.
That are very useful if you want Vim to quickly swith between different projects, automatically loading the files you were last working on in that project, and enable you to continue where you left off.

Terminology and Default Values:
Workspace files: I will shortly call vim session and viminfo files as "Workspace files" in this manual. workspace: All prompt messages in Vim prefixed with "workspace:" are from this Session-Viminfo-Management plugin.
Default Values:
    * Default name for workspace files is: workspace.session workspace.viminfo
    * Default saving path: vim current path (Type Vim Ex command getcwd() to get it)

Functionality:
* This plugin provides automation ability when launching Vim and leaving Vim.
* It provides two Ex commands: Savews, Loadws.
* There is one global option you can use: wsOverwrite.

Automation

This plugin provides automation ability when launching Vim and leaving Vim.

When launching Vim, this plugin will detect current path and load default workspace files(workspace.session and workspace.viminfo) if exist. If no default workspace files found, it will check whether there are files having suffix ".session" and ".viminfo" in pair. If yes, it will prompt a list for user selection if there are more than one pair.

Example 1:
If you're at /home/test, there are:

    workspace.session
    workspace.viminfo
    test.session
    test.viminfo

When you launch vim, it will load workspace.session and workspace.viminfo with prompt message by default. As following illustration: http://brant-public.qiniudn.com/vim01-automation_lauching.png

Example 2:
If you're at /home/test, there are:

    test01.session
    test01.viminfo
    test02.session
    test02.viminfo

When you launch vim, it will list all workspace files for your choice. As following:

  workspace: Please input the expected workspace index you want to load:
    [0] /home/test/test01
    [1] /home/test/test02
  Your input(q to exit this function of workspace plugin):

Then you type a legal number in range(0,1), it will load the specific workspace files. Also you can type 'Q' or 'q' to do nothing with workspace files. If you give an exception, you will be required to input again. As following illustration: http://brant-public.qiniudn.com/vim02-automation_lauching_dup_echo_disappear.png

There is a little compatible problem in some tty console. Please read "Limitation and Known issues" section in this Readme.md for more details.
Leaving Vim

Example 1:

  : Savews my.ws
  : Loadws wow.ws
  : Savews new.ws
  : qa

Result:
This plugin will automatically save session and viminfo files to the last workspace files

    new.session
    new.viminfo

As following illustration: vim03-automation_leaving_new.ws.png
Ex Commands

This plugin provide two Ex commands: Savews, Loadws.
Savews

Save vim session and viminfo files when you type Ex command :Savews with proper arguments. Particularly, if option wsOverwrite is 1(This is default value), when you exit from Vim, this plugin will save session and viminfo files to your last saved/loaded workspace files automatically.

Example 1:

  :Savews    

Result:
Will create workspace.session and workspace.viminfo in current folder, if they didnot existed beforehand.
Please see |'wsOverwrite'| for more details about overwrite behavior.

Example 2:

  :Savews /home/myproject

Result:
Will create:

    /home/myproject/workspace.session
    /home/myproject/workspace.viminfo Please make sure folder /home/myproject existed beforehand.
    Please see |'wsOverwrite'| for more details about overwrite behavior.

Example 3:

  :Savews my.ws

Result:
Save to my.session and my.viminfo in current folder.
Please see |'wsOverwrite'| for more details about overwrite behavior.

Example 4:

  :Savews /home/myproject/my.ws

Result:
You will get my.session and my.viminfo in /home/myproject folder if /home/myproject existed.
Please see |'wsOverwrite'| for more details about overwrite behavior.

Two point please keep in mind when using Savews:

    You must have suffix .ws, if you want to specify name for session and viminfo files, like example 3 and example 4. Otherwise, they will have default name, workspace.session and workspace.viminfo.
    Please remember to use :qwa to quit Vim if you want to reopen all windows/tabs you're editing.
    The reason is that Savews command will save workspace files automatically when you exit Vim. So if you have opened many windows/tabs, but closed them one by one, there would be only one window is openning just before you exit Vim, workspace plugin will only can remember the last window and just reopen it for you when you enter Vim next time by loading your workspace files.

Loadws

Load vim session and viminfo files.

Example 1:

  :Lavews    

Result:
Will load workspace.session and workspace.viminfo in current folder, if they existed beforehand.

Example 2:

  :Lavews /home/myproject

Result:
Will load:

    /home/myproject/workspace.session
    /home/myproject/workspace.viminfo Please make sure workspace files existed beforehand.

Example 3:

  :Lavews my.ws

Result:
Will load my.session and my.viminfo in current folder.

Example 4:

  :Lavews /home/myproject/my.ws

Result:
Will load my.session and my.viminfo in /home/myproject folder if existed.

You'd better not to run :Loadws in same Vim twice. Please read "Limitation and Known issues" section in this Readme.md for more details.
Options

There is one global option you can use: wsOverwrite.
wsOverwrite

Value: 0 or 1.
Default: 1.

If there are vim session and viminfo files with same name when you issue :Savews, you can overwrite them by setting this option to 1:

  let g:wsOverwrite=1

If g:wsOverwrite is 0, and there are workspace.session and workspace.viminfo, when you type:

  :Savews

It will said:

    Workspace files existed, and wsOverwrite is 0, will not overwrite existed files.

IT RECOMMENDED STRONGLY YOU KEEP IT DEFAULT AS 1. BECAUSE IF IT'S 0, WHEN YOU EXIT VIM, IT WON'T SAVE YOUR WORKSPACE FILES AUTOMATICALLY.

Limitation and Known issues:
* Windows is not a target of this plugin. I think you would experience some problmes if you want to use this plugin on Windows Vim.
* There is compatible problem when work with autochdir option. Recommend to remove autochdir option from your ~/.vimrc. For my experiences, if enable autochdir option in Vim, users will mess up themselves when trying to provide relative pathes of Vim session and viminfo files. It seems it can't have impact if you provide absolute path for Vim session and viminfo files.
* There is a little compatible problem in some tty console. In some tty console, when launching Vim and this plugin prompt a workspace list for your choice, after you input your choice, it will echo all message one time. Anyway, the function still works.
* You'd better not to run :Loadws in same Vim twice. If you once run Loadws to load your workspace files, then run Loadws to reload them again in the same Vim, it will not close all openning windows and tabs. In other words, you may see double windows have been opened for the same file.

License:
This software is licensed under the MIT License. Copyright 2014 Brant Chen (Primary: brantchen2008@gmail.com and secondary: xkdcc@163.com).

For more details, please access: https://github.com/xkdcc/Session-Viminfo-Management
Or :help workspaceIntro.
 
install details
Download zip ball and copy files to ~/.vim/plugin/session-viminfo-manage.vim and ~/.vim/doc/session-viminfo-manage.txt. Or copy and paste:

cd ~/.vim
git clone https://github.com/xkdcc/Session-Viminfo-Management.git
mv Session-Viminfo-Management/plugin/* ~/.vim/plugin/ && mv Session-Viminfo-Management/doc/* ~/.vim/doc/
rm -fr Session-Viminfo-Management/

Normally to generate documentation, Vim expects you to run :helptags on each directory with documentation (e.g., :helptags ~/.vim/doc).
 

rate this script Life Changing Helpful Unfulfilling 
script versions (upload new version)

Click on the package to download.

package script version date Vim version user release notes
Session-Viminfo-Management-1.0-git-042c94fbe8154a52fcfd89234ba7ca6a36f73057.zip 1.0 2014-08-17 7.0 Brant Chen Initial upload
ip used for rating: 18.116.40.177

If you have questions or remarks about this site, visit the vimonline development pages. Please use this site responsibly.
Questions about Vim should go to the maillist. Help Bram help Uganda.
   
Vim at Github