mirror of
https://github.com/neovim/neovim.git
synced 2026-02-03 02:51:22 +10:00
Problem: The fold and sign column is built and stored regardless of
whether the corresponding item is present in 'statuscolumn'.
Solution: Since the 'statuscolumn' parses itself, we can defer
building the columns until the corresponding item is
actually encountered.
18 lines
330 B
C
18 lines
330 B
C
#ifndef NVIM_FOLD_H
|
|
#define NVIM_FOLD_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "nvim/buffer_defs.h"
|
|
#include "nvim/garray.h"
|
|
#include "nvim/macros.h"
|
|
#include "nvim/pos.h"
|
|
#include "nvim/types.h"
|
|
|
|
EXTERN int disable_fold_update INIT(= 0);
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "fold.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_FOLD_H
|