mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 01:46:29 +00:00
16 lines
533 B
C
16 lines
533 B
C
#pragma once
|
|
|
|
#include "nvim/pos_defs.h"
|
|
|
|
/// Info used to pass info about a fold from the fold-detection code to the
|
|
/// code that displays the foldcolumn.
|
|
typedef struct foldinfo {
|
|
linenr_T fi_lnum; ///< line number where fold starts
|
|
int fi_level; ///< level of the fold; when this is zero the
|
|
///< other fields are invalid
|
|
int fi_low_level; ///< lowest fold level that starts in the same line
|
|
linenr_T fi_lines;
|
|
} foldinfo_T;
|
|
|
|
enum { FOLD_TEXT_LEN = 51, }; ///< buffer size for get_foldtext()
|