mirror of
https://github.com/neovim/neovim.git
synced 2025-12-19 21:05:37 +00:00
buffer.h:
buflist_getfile() flags
buflist_new() flags
buf_freeall() flags
do_buffer() flags
charset.h:
chartab[] flags
edit.h:
in_cinkeys() flags
change_indent() flags
beginline() flags
insertchar() flags
nv_mousescroll() flags
eval.c
AUTOLOAD_CHAR
eval.h:
enum for vimvars[]
ex_cmds.h:
do_ecmd
read_viminfo flags
ex_cmds2.h:
check_changed() flags
do_source() flags
ex_cmds_defs.h:
BAD_* flags
ex_docmd.h:
VALID_PATH VALID_HEAD
EXMODE_*
do_cmdline() flags
added include
ex_getln.c
*_ESC_CHARS definitions
ex_getln.h:
history table flags - used by add_to_history()
fileio.h:
readfile() flags
event_T definition
getchar.h:
ins_typebuf() flags
KEYLEN_*
globals.h:
NO_SCREEN
NO_BUFFERS
SEA_* defines
current_SID flags
hlf_T enum
HL_FLAGS
do_profiling() flags
schar_T
sattr_T
indent.h:
set_indent() flags
macros.h:
BINARY_FILE_IO flags
mbyte.h:
MB_BYTE2LEN*
ENC_*
memfile.h:
mf_sync() flags
misc1.h:
open_line() flags
message.h:
do_dialog() flags
vim_dialogyesno() flags
DLG_BUTTON_*
normal.h:
find_ident_under_cursor() flags
ops.h:
do_put() flags
operator ID's
option.h:
buf_copy_options() flags
OPT_* flags
os_unix.h:
mch_nodetype() flags
quickfix.h:
skip_vimgrep_pat() flags
regexp.h:
vim_regcomp() flags
values for reg_do_extmatch
search.h:
do_search() flags
search_regcomp() flags
findmatchlimit() flags
syntax.h:
HL_* flags
HL_FOLD is used in buffer_defs.h but nvim
compiles just fine with the defines in
syntax.h
tag.h:
do_tag() flags
find_tags() flags
term.h:
TBUFSZ flags
MOUSE flags
ui.h:
jump_to_mouse() flags
window.h:
file_name_in_line() flags
win_split() flags
MIN_LINES
MIN_COLUMNS
Remove VimClipboard which should have been removed with PR #921.
54 lines
2.5 KiB
C
54 lines
2.5 KiB
C
#ifndef NVIM_OPS_H
|
|
#define NVIM_OPS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/types.h"
|
|
|
|
typedef int (*Indenter)(void);
|
|
|
|
/* flags for do_put() */
|
|
#define PUT_FIXINDENT 1 /* make indent look nice */
|
|
#define PUT_CURSEND 2 /* leave cursor after end of new text */
|
|
#define PUT_CURSLINE 4 /* leave cursor on last line of new text */
|
|
#define PUT_LINE 8 /* put register as lines */
|
|
#define PUT_LINE_SPLIT 16 /* split line for linewise register */
|
|
#define PUT_LINE_FORWARD 32 /* put linewise register below Visual sel. */
|
|
|
|
/*
|
|
* Operator IDs; The order must correspond to opchars[] in ops.c!
|
|
*/
|
|
#define OP_NOP 0 /* no pending operation */
|
|
#define OP_DELETE 1 /* "d" delete operator */
|
|
#define OP_YANK 2 /* "y" yank operator */
|
|
#define OP_CHANGE 3 /* "c" change operator */
|
|
#define OP_LSHIFT 4 /* "<" left shift operator */
|
|
#define OP_RSHIFT 5 /* ">" right shift operator */
|
|
#define OP_FILTER 6 /* "!" filter operator */
|
|
#define OP_TILDE 7 /* "g~" switch case operator */
|
|
#define OP_INDENT 8 /* "=" indent operator */
|
|
#define OP_FORMAT 9 /* "gq" format operator */
|
|
#define OP_COLON 10 /* ":" colon operator */
|
|
#define OP_UPPER 11 /* "gU" make upper case operator */
|
|
#define OP_LOWER 12 /* "gu" make lower case operator */
|
|
#define OP_JOIN 13 /* "J" join operator, only for Visual mode */
|
|
#define OP_JOIN_NS 14 /* "gJ" join operator, only for Visual mode */
|
|
#define OP_ROT13 15 /* "g?" rot-13 encoding */
|
|
#define OP_REPLACE 16 /* "r" replace chars, only for Visual mode */
|
|
#define OP_INSERT 17 /* "I" Insert column, only for Visual mode */
|
|
#define OP_APPEND 18 /* "A" Append column, only for Visual mode */
|
|
#define OP_FOLD 19 /* "zf" define a fold */
|
|
#define OP_FOLDOPEN 20 /* "zo" open folds */
|
|
#define OP_FOLDOPENREC 21 /* "zO" open folds recursively */
|
|
#define OP_FOLDCLOSE 22 /* "zc" close folds */
|
|
#define OP_FOLDCLOSEREC 23 /* "zC" close folds recursively */
|
|
#define OP_FOLDDEL 24 /* "zd" delete folds */
|
|
#define OP_FOLDDELREC 25 /* "zD" delete folds recursively */
|
|
#define OP_FORMAT2 26 /* "gw" format operator, keeps cursor pos */
|
|
#define OP_FUNCTION 27 /* "g@" call 'operatorfunc' */
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "ops.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_OPS_H
|