diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-13 14:09:44 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-13 14:09:44 +0100 |
commit | cfeb8a584be11758cf71ae02f6c937b06d6bb66f (patch) | |
tree | 9f024147fdbebdf5d78a9860ec6bb47cd8dd5445 /src/buffer.c | |
parent | 6a76e84f555da6d9ee57db80143e1e5eb85535ff (diff) | |
download | vim-git-cfeb8a584be11758cf71ae02f6c937b06d6bb66f.tar.gz |
patch 9.0.0198: ml_get error when switching buffer in Visual modev9.0.0198
Problem: ml_get error when switching buffer in Visual mode.
Solution: End Visual mode when switching buffer. (closes #10902)
Diffstat (limited to 'src/buffer.c')
-rw-r--r-- | src/buffer.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index 108d59676..669cfa9a9 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1818,6 +1818,14 @@ set_curbuf(buf_T *buf, int action) static void enter_buffer(buf_T *buf) { + // when closing the current buffer stop Visual mode + if (VIsual_active +#if defined(EXITFREE) + && !entered_free_all_mem +#endif + ) + end_visual_mode(); + // Get the buffer in the current window. curwin->w_buffer = buf; curbuf = buf; |