mirror of
https://github.com/vim/vim.git
synced 2025-10-16 07:24:23 -04:00
patch 9.0.0092: plugins cannot change v:completed_item
Problem: Plugins cannot change v:completed_item. Solution: Make v:completed_item writeable. (Shougo Matsushita, closes #10801)
This commit is contained in:
committed by
Bram Moolenaar
parent
34d1773bd4
commit
61021aa318
@@ -111,7 +111,7 @@ static struct vimvar
|
||||
{VV_NAME("oldfiles", VAR_LIST), &t_list_string, 0},
|
||||
{VV_NAME("windowid", VAR_NUMBER), NULL, VV_RO},
|
||||
{VV_NAME("progpath", VAR_STRING), NULL, VV_RO},
|
||||
{VV_NAME("completed_item", VAR_DICT), &t_dict_string, VV_RO},
|
||||
{VV_NAME("completed_item", VAR_DICT), &t_dict_string, 0},
|
||||
{VV_NAME("option_new", VAR_STRING), NULL, VV_RO},
|
||||
{VV_NAME("option_old", VAR_STRING), NULL, VV_RO},
|
||||
{VV_NAME("option_oldlocal", VAR_STRING), NULL, VV_RO},
|
||||
|
Reference in New Issue
Block a user