mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 01:16:31 +00:00
refactor: move Arena and ArenaMem to memory_defs.h (#26240)
This commit is contained in:
@@ -114,3 +114,10 @@ typedef struct {
|
||||
/// Note: If returned FAIL or *numMatches is 0, *matches will NOT be freed by
|
||||
/// caller.
|
||||
typedef int (*opt_expand_cb_T)(optexpand_T *args, int *numMatches, char ***matches);
|
||||
|
||||
/// Requested option scopes for various functions in option.c
|
||||
typedef enum {
|
||||
kOptReqGlobal = 0, ///< Request global option value
|
||||
kOptReqWin = 1, ///< Request window-local option value
|
||||
kOptReqBuf = 2, ///< Request buffer-local option value
|
||||
} OptReqScope;
|
||||
|
Reference in New Issue
Block a user