Neovim Home
src
nvim
edit.h
Go to the documentation of this file.
1
#ifndef NVIM_EDIT_H
2
#define NVIM_EDIT_H
3
4
#include "
nvim/vim.h
"
5
6
/*
7
* Array indexes used for cptext argument of ins_compl_add().
8
*/
9
#define CPT_ABBR 0 // "abbr"
10
#define CPT_MENU 1 // "menu"
11
#define CPT_KIND 2 // "kind"
12
#define CPT_INFO 3 // "info"
13
#define CPT_COUNT 4 // Number of entries
14
15
// values for cp_flags
16
typedef
enum
{
17
CP_ORIGINAL_TEXT
= 1,
// the original text when the expansion begun
18
CP_FREE_FNAME
= 2,
// cp_fname is allocated
19
CP_CONT_S_IPOS
= 4,
// use CONT_S_IPOS for compl_cont_status
20
CP_EQUAL
= 8,
// ins_compl_equal() always returns true
21
CP_ICASE
= 16,
// ins_compl_equal ignores case
22
CP_FAST
= 32,
// use fast_breakcheck instead of os_breakcheck
23
}
cp_flags_T
;
24
25
typedef
int (*
IndentGetter
)(
void
);
26
27
// Values for in_cinkeys()
28
#define KEY_OPEN_FORW 0x101
29
#define KEY_OPEN_BACK 0x102
30
#define KEY_COMPLETE 0x103 // end of completion
31
32
// Values for change_indent()
33
#define INDENT_SET 1 // set indent
34
#define INDENT_INC 2 // increase indent
35
#define INDENT_DEC 3 // decrease indent
36
37
// flags for beginline()
38
#define BL_WHITE 1 // cursor on first non-white in the line
39
#define BL_SOL 2 // use 'sol' option
40
#define BL_FIX 4 // don't leave cursor on a NUL
41
42
// flags for insertchar()
43
#define INSCHAR_FORMAT 1 // force formatting
44
#define INSCHAR_DO_COM 2 // format comments
45
#define INSCHAR_CTRLV 4 // char typed just after CTRL-V
46
#define INSCHAR_NO_FEX 8 // don't use 'formatexpr'
47
#define INSCHAR_COM_LIST 16 // format comments with list/2nd line indent
48
49
#ifdef INCLUDE_GENERATED_DECLARATIONS
50
# include "edit.h.generated.h"
51
#endif
52
#endif // NVIM_EDIT_H
CP_ICASE
@ CP_ICASE
Definition:
edit.h:21
CP_FREE_FNAME
@ CP_FREE_FNAME
Definition:
edit.h:18
CP_CONT_S_IPOS
@ CP_CONT_S_IPOS
Definition:
edit.h:19
cp_flags_T
cp_flags_T
Definition:
edit.h:16
CP_ORIGINAL_TEXT
@ CP_ORIGINAL_TEXT
Definition:
edit.h:17
void
void(WINAPI *pClosePseudoConsole)(HPCON)
CP_FAST
@ CP_FAST
Definition:
edit.h:22
IndentGetter
int(* IndentGetter)(void)
Definition:
edit.h:25
CP_EQUAL
@ CP_EQUAL
Definition:
edit.h:20
vim.h