aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-01-17 06:24:52 +0800
committerGitHub <noreply@github.com>2023-01-17 06:24:52 +0800
commit9ccc6de8d3ebfec0aebdc6dabdb23dd43f102331 (patch)
tree94addadacb9161dd4d8f43d5f6a34226a9fed27f /src/nvim/eval.h
parent1484995a1e5ab29010878fa5ee27c935fec6522f (diff)
parent54470336ff3ae1cf32daa2815267fe837aff0281 (diff)
downloadrneovim-9ccc6de8d3ebfec0aebdc6dabdb23dd43f102331.tar.gz
rneovim-9ccc6de8d3ebfec0aebdc6dabdb23dd43f102331.tar.bz2
rneovim-9ccc6de8d3ebfec0aebdc6dabdb23dd43f102331.zip
Merge pull request #21768 from luukvbaal/test-virtline
fix(column)!: ensure 'statuscolumn' works with virtual and wrapped lines BREAKING CHANGE: In 'statuscolumn' evaluation, `v:wrap` has been replaced by `v:virtnum`. `v:virtnum` is negative when drawing virtual lines, zero when drawing the actual buffer line, and positive when drawing the wrapped part of a buffer line.
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r--src/nvim/eval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h
index d67414f12f..86bc76e793 100644
--- a/src/nvim/eval.h
+++ b/src/nvim/eval.h
@@ -166,7 +166,7 @@ typedef enum {
VV__NULL_BLOB, // Blob with NULL value. For test purposes only.
VV_LUA,
VV_RELNUM,
- VV_WRAP,
+ VV_VIRTNUM,
} VimVarIndex;
/// All recognized msgpack types