diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-07-30 11:08:16 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2024-07-30 12:18:38 +0800 |
commit | 96b358e9f138e60a24c3f3c9b45e9b82ffb92c1c (patch) | |
tree | ea6a0d4ca9039e5fb59c8de4e45d92b3c8194259 /src/nvim/eval.h | |
parent | cd4638366759bc984d4cb7207a56e5bc112f4179 (diff) | |
download | rneovim-96b358e9f138e60a24c3f3c9b45e9b82ffb92c1c.tar.gz rneovim-96b358e9f138e60a24c3f3c9b45e9b82ffb92c1c.tar.bz2 rneovim-96b358e9f138e60a24c3f3c9b45e9b82ffb92c1c.zip |
vim-patch:partial:9.0.0327: items() does not work on a list
Problem: items() does not work on a list. (Sergey Vlasov)
Solution: Make items() work on a list. (closes vim/vim#11013)
https://github.com/vim/vim/commit/976f859763b215050a03248dbc2bb62fa5d0d059
Skip CHECK_LIST_MATERIALIZE.
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r-- | src/nvim/eval.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h index d83af70ef7..004fc82222 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -237,13 +237,6 @@ typedef enum { EXPR_ISNOT, ///< isnot } exprtype_T; -/// Type for dict_list function -typedef enum { - kDictListKeys, ///< List dictionary keys. - kDictListValues, ///< List dictionary values. - kDictListItems, ///< List dictionary contents: [keys, values]. -} DictListType; - // Used for checking if local variables or arguments used in a lambda. extern bool *eval_lavars_used; |