mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
refactor: move some constants out of vim_defs.h (#26298)
This commit is contained in:
@@ -1,21 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "klib/kvec.h"
|
||||
#include "nvim/assert_defs.h"
|
||||
#include "nvim/decoration_defs.h"
|
||||
#include "nvim/garray_defs.h"
|
||||
#include "nvim/garray_defs.h" // IWYU pragma: keep
|
||||
#include "nvim/map_defs.h"
|
||||
#include "nvim/pos_defs.h"
|
||||
#include "nvim/types_defs.h"
|
||||
#include "nvim/pos_defs.h" // IWYU pragma: keep
|
||||
// only for debug functions:
|
||||
#include "nvim/api/private/defs.h"
|
||||
|
||||
struct mtnode_s;
|
||||
#include "nvim/api/private/defs.h" // IWYU pragma: keep
|
||||
|
||||
#define MT_MAX_DEPTH 20
|
||||
#define MT_BRANCH_FACTOR 10
|
||||
|
Reference in New Issue
Block a user