mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 13:38:34 +00:00
eval: Add special variables v:false, v:null, v:none
This commit is contained in:
@@ -15,12 +15,6 @@
|
||||
// All user-defined functions are found in this hashtable.
|
||||
extern hashtab_T func_hashtab;
|
||||
|
||||
/// CopyID for recursively traversing lists and dicts
|
||||
///
|
||||
/// This value is needed to avoid endless recursiveness. Last bit is used for
|
||||
/// previous_funccal and normally ignored when comparing.
|
||||
extern int current_copyID;
|
||||
|
||||
// Structure to hold info for a user function.
|
||||
typedef struct ufunc ufunc_T;
|
||||
|
||||
@@ -127,7 +121,11 @@ enum {
|
||||
VV_ERRORS,
|
||||
VV_MSGPACK_TYPES,
|
||||
VV_EVENT,
|
||||
VV_LEN, // number of v: vars
|
||||
VV_FALSE,
|
||||
VV_TRUE,
|
||||
VV_NULL,
|
||||
VV_NONE,
|
||||
VV_LEN, ///< Number of v: variables
|
||||
};
|
||||
|
||||
/// All recognized msgpack types
|
||||
|
Reference in New Issue
Block a user