mirror of
https://github.com/neovim/neovim.git
synced 2026-08-21 06:41:04 +00:00
16 lines
422 B
C
16 lines
422 B
C
#pragma once
|
|
|
|
#include <stddef.h> // IWYU pragma: keep
|
|
|
|
#include "nvim/context_defs.h" // IWYU pragma: export
|
|
#include "nvim/macros_defs.h"
|
|
|
|
extern int kCtxAll;
|
|
|
|
/// Pool of temporary scratch windows (fka "autocmd windows"), for ctx_switch().
|
|
EXTERN kvec_t(CtxWin) ctx_win_vec INIT( = KV_INITIAL_VALUE);
|
|
#define ctx_win (ctx_win_vec.items)
|
|
#define CTX_WIN_COUNT ((int)ctx_win_vec.size)
|
|
|
|
#include "context.h.generated.h"
|