comparison src/structs.h @ 26978:aa613a3084b9 v8.2.4018

patch 8.2.4018: ml_get error when win_execute redraws with Visual selection Commit: https://github.com/vim/vim/commit/18f4740f043b353abe47b7a00131317052457686 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 6 13:24:51 2022 +0000 patch 8.2.4018: ml_get error when win_execute redraws with Visual selection Problem: ml_get error when win_execute redraws with Visual selection. Solution: Disable Visual area temporarily. (closes https://github.com/vim/vim/issues/9479)
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Jan 2022 14:30:05 +0100
parents 7045e9308ca3
children 8796f1384750
comparison
equal deleted inserted replaced
26977:b96cf6480624 26978:aa613a3084b9
4505 FILTERMAP_FILTER, 4505 FILTERMAP_FILTER,
4506 FILTERMAP_MAP, 4506 FILTERMAP_MAP,
4507 FILTERMAP_MAPNEW 4507 FILTERMAP_MAPNEW
4508 } filtermap_T; 4508 } filtermap_T;
4509 4509
4510 // Structure used by switch_win() to pass values to restore_win()
4511 typedef struct {
4512 win_T *sw_curwin;
4513 tabpage_T *sw_curtab;
4514 int sw_same_win; // VIsual_active was not reset
4515 int sw_visual_active;
4516 } switchwin_T;