diff options
author | ZyX <kp-pav@yandex.ru> | 2015-07-19 21:23:15 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2015-10-08 22:00:13 +0300 |
commit | 43fe98c9fb350b428d05021995c8892e080054b2 (patch) | |
tree | beb6614b0c334de02f40ce5555eac57b691a2d93 /src/nvim/mark_defs.h | |
parent | 4bc053facda4aee6cec2c6cbc9fbbe978e66503d (diff) | |
download | rneovim-43fe98c9fb350b428d05021995c8892e080054b2.tar.gz rneovim-43fe98c9fb350b428d05021995c8892e080054b2.tar.bz2 rneovim-43fe98c9fb350b428d05021995c8892e080054b2.zip |
shada: Add support for merging everything like described in the doc
Diffstat (limited to 'src/nvim/mark_defs.h')
-rw-r--r-- | src/nvim/mark_defs.h | 6 |
1 files changed, 6 insertions, 0 deletions
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 |