comparison src/structs.h @ 12521:718787498836 v8.0.1139

patch 8.0.1139: using window toolbar changes state commit https://github.com/vim/vim/commit/a21a6a9ade7bec3a07992d4d900d4ce82eeb8a29 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 23 16:33:50 2017 +0200 patch 8.0.1139: using window toolbar changes state Problem: Using window toolbar changes state. Solution: Always execute window toolbar actions in Normal mode.
author Christian Brabandt <cb@256bit.org>
date Sat, 23 Sep 2017 16:45:05 +0200
parents 972ea22c946f
children 158917d728b4
comparison
equal deleted inserted replaced
12520:983f47a69df0 12521:718787498836
3403 int ll_empty2; /* Second index is empty: [i:] */ 3403 int ll_empty2; /* Second index is empty: [i:] */
3404 dict_T *ll_dict; /* The Dictionary or NULL */ 3404 dict_T *ll_dict; /* The Dictionary or NULL */
3405 dictitem_T *ll_di; /* The dictitem or NULL */ 3405 dictitem_T *ll_di; /* The dictitem or NULL */
3406 char_u *ll_newkey; /* New key for Dict in alloc. mem or NULL. */ 3406 char_u *ll_newkey; /* New key for Dict in alloc. mem or NULL. */
3407 } lval_T; 3407 } lval_T;
3408
3409 /* Structure used to save the current state. Used when executing Normal mode
3410 * commands while in any other mode. */
3411 typedef struct {
3412 int save_msg_scroll;
3413 int save_restart_edit;
3414 int save_msg_didout;
3415 int save_State;
3416 int save_insertmode;
3417 int save_finish_op;
3418 int save_opcount;
3419 tasave_T tabuf;
3420 } save_state_T;