diff options
author | James McCoy <jamessan@jamessan.com> | 2017-01-02 14:09:48 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-01-09 20:23:41 -0500 |
commit | 492f2cfeff9a8ed295d2cbf3f4197a91654e07ca (patch) | |
tree | ade9f538d71baa31f1637a43101ffc46be350e63 /src/nvim/shada.c | |
parent | 282109c51b557bbd5d4fafb3f543613748831040 (diff) | |
download | rneovim-492f2cfeff9a8ed295d2cbf3f4197a91654e07ca.tar.gz rneovim-492f2cfeff9a8ed295d2cbf3f4197a91654e07ca.tar.bz2 rneovim-492f2cfeff9a8ed295d2cbf3f4197a91654e07ca.zip |
vim-patch:7.4.1925
Problem: Viminfo does not merge file marks properly.
Solution: Use a timestamp. Add the :clearjumps command.
https://github.com/vim/vim/commit/2d35899721da0e9359a9fe1059554f8c4ea7f0c1
Diffstat (limited to 'src/nvim/shada.c')
-rw-r--r-- | src/nvim/shada.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/shada.c b/src/nvim/shada.c index 64610ae8f8..8cf5976e8b 100644 --- a/src/nvim/shada.c +++ b/src/nvim/shada.c @@ -118,9 +118,10 @@ KHASH_SET_INIT_STR(strset) // E576: Missing '>' // E577: Illegal register name // E886: Can't rename viminfo file to %s! +// E929: Too many viminfo temp files, like %s! // Now only six of them are used: // E137: ShaDa file is not writeable (for pre-open checks) -// E138: All %s.tmp.X files exist, cannot write ShaDa file! +// E929: All %s.tmp.X files exist, cannot write ShaDa file! // RCERR (E576) for critical read errors. // RNERR (E136) for various errors when renaming. // RERR (E575) for various errors inside read ShaDa file. |