diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-06-06 21:07:52 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-06-06 21:07:52 +0200 |
commit | 45d2eeaad66939348893b9254171067b0457cd9d (patch) | |
tree | 9259906f02afa0de6c6752982ad0c936e08033e5 /src/proto/ex_cmds.pro | |
parent | bbe8d91e695184771d7e45315258fab8eb3e6b07 (diff) | |
download | vim-git-45d2eeaad66939348893b9254171067b0457cd9d.tar.gz |
patch 7.4.1903v7.4.1903
Problem: When writing viminfo merging current history with history in
viminfo may drop recent history entries.
Solution: Add new format for viminfo lines, use it for history entries. Use
a timestamp for ordering the entries. Add test_settime().
Add the viminfo version. Does not do merging on timestamp yet.
Diffstat (limited to 'src/proto/ex_cmds.pro')
-rw-r--r-- | src/proto/ex_cmds.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_cmds.pro b/src/proto/ex_cmds.pro index d22b3dd71..3057a9310 100644 --- a/src/proto/ex_cmds.pro +++ b/src/proto/ex_cmds.pro @@ -16,6 +16,7 @@ void write_viminfo(char_u *file, int forceit); int viminfo_readline(vir_T *virp); char_u *viminfo_readstring(vir_T *virp, int off, int convert); void viminfo_writestring(FILE *fd, char_u *p); +int barline_writestring(FILE *fd, char_u *s, int remaining_start); void do_fixdel(exarg_T *eap); void print_line_no_prefix(linenr_T lnum, int use_number, int list); void print_line(linenr_T lnum, int use_number, int list); |