How to set gvim to automatically load the files opened when it was closed last time every time the editor is started?
某草草
某草草 2017-05-16 16:42:25
0
2
684

RT, so you can continue the last work

某草草
某草草

reply all(2)
曾经蜡笔没有小新

Add the following content to the configuration file:

" Go to last file(s) if invoked without arguments.
autocmd VimLeave * nested if (!isdirectory($HOME . "/.vim")) |
    \ call mkdir($HOME . "/.vim") |
    \ endif |
    \ execute "mksession! " . $HOME . "/.vim/Session.vim"

autocmd VimEnter * nested if argc() == 0 && filereadable($HOME . "/.vim/Session.vim") |
    \ execute "source " . $HOME . "/.vim/Session.vim"

Reference: Open the last edited file

伊谢尔伦

If you use terminal, it is recommended to use the following two aliases:

alias lgvim='gvim -c "normal '\''0"'
alias lvim='vim -c "normal '\''0"'

Here is a detailed introduction

I prefer to use mru plug-in

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template