aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-01-15 19:21:17 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-01-15 19:21:17 +0800
commit87e54f123aa1c9c769d3ff35bdd1b5a980ba701c (patch)
tree1cb66900f9e0a0275c53803ca685872ddb9a294e /src/nvim/buffer.c
parentd391940b9a074bca7ee82460ccaaabf46b5f2ba9 (diff)
downloadrneovim-87e54f123aa1c9c769d3ff35bdd1b5a980ba701c.tar.gz
rneovim-87e54f123aa1c9c769d3ff35bdd1b5a980ba701c.tar.bz2
rneovim-87e54f123aa1c9c769d3ff35bdd1b5a980ba701c.zip
vim-patch:8.2.3280: 'virtualedit' local to buffer is not the best solution
Problem: 'virtualedit' local to buffer is not the best solution. Solution: Make it window-local. (Gary Johnson, closes vim/vim#8685) https://github.com/vim/vim/commit/51ad850f5fbafa7aa3f60affa74ec9c9f992c6cc
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 3753d67d54..abd22fba26 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -1941,7 +1941,6 @@ void free_buf_options(buf_T *buf, int free_p_ff)
clear_string_option(&buf->b_p_lw);
clear_string_option(&buf->b_p_bkc);
clear_string_option(&buf->b_p_menc);
- clear_string_option(&buf->b_p_ve);
}