summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-06-06 21:07:52 +0200
committerBram Moolenaar <Bram@vim.org>2016-06-06 21:07:52 +0200
commit45d2eeaad66939348893b9254171067b0457cd9d (patch)
tree9259906f02afa0de6c6752982ad0c936e08033e5 /src/structs.h
parentbbe8d91e695184771d7e45315258fab8eb3e6b07 (diff)
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/structs.h')
-rw-r--r--src/structs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 5ecb806cf7..ac99e9158d 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1014,6 +1014,7 @@ typedef struct
#ifdef FEAT_MBYTE
vimconv_T vir_conv; /* encoding conversion */
#endif
+ int vir_version; /* viminfo version detected or -1 */
garray_T vir_barlines; /* lines starting with | */
} vir_T;