aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.h
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-04-26 23:58:02 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-04-27 09:21:36 -0400
commit95f02cb587f9859fa558b59617b87a9808ec2cb9 (patch)
tree92c115758c2c25ecf6944cca77e71e198955a997 /src/nvim/eval.h
parent25c0675fe343aa20e05c6cb26c2529d9dd9ac748 (diff)
downloadrneovim-95f02cb587f9859fa558b59617b87a9808ec2cb9.tar.gz
rneovim-95f02cb587f9859fa558b59617b87a9808ec2cb9.tar.bz2
rneovim-95f02cb587f9859fa558b59617b87a9808ec2cb9.zip
vim-patch:8.2.2388: no easy way to get the maximum or mininum number value
Problem: No easy way to get the maximum or mininum number value. Solution: Add v:numbermax and v:numbermin. https://github.com/vim/vim/commit/57d5a01cb45d6edb16c3835a49b42d6d8fc0163e
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r--src/nvim/eval.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h
index 88c629f15d..8188502987 100644
--- a/src/nvim/eval.h
+++ b/src/nvim/eval.h
@@ -142,6 +142,8 @@ typedef enum {
VV_FALSE,
VV_TRUE,
VV_NULL,
+ VV_NUMBERMAX,
+ VV_NUMBERMIN,
VV_NUMBERSIZE,
VV_VIM_DID_ENTER,
VV_TESTING,