From 43fe98c9fb350b428d05021995c8892e080054b2 Mon Sep 17 00:00:00 2001 From: ZyX Date: Sun, 19 Jul 2015 21:23:15 +0300 Subject: shada: Add support for merging everything like described in the doc --- src/nvim/mark_defs.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/nvim/mark_defs.h') diff --git a/src/nvim/mark_defs.h b/src/nvim/mark_defs.h index 2f7c9b4ed4..af4727d634 100644 --- a/src/nvim/mark_defs.h +++ b/src/nvim/mark_defs.h @@ -19,6 +19,12 @@ /// Total possible number of global marks #define NGLOBALMARKS (NMARKS + EXTRA_MARKS) +/// Total possible number of local marks +/// +/// That are uppercase marks plus '"', '^' and '.'. There are other local marks, +/// but they are not saved in ShaDa files. +#define NLOCALMARKS (NMARKS + 3) + /// Maximum number of marks in jump list #define JUMPLISTSIZE 100 -- cgit