aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/usercmd.h
blob: 84a8f61719591d719c7f72419b8d77bb59a539f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once

#include <stddef.h>  // IWYU pragma: keep
#include <stdint.h>

#include "nvim/api/private/defs.h"  // IWYU pragma: keep
#include "nvim/cmdexpand_defs.h"  // IWYU pragma: keep
#include "nvim/eval/typval_defs.h"
#include "nvim/ex_cmds_defs.h"
#include "nvim/garray_defs.h"
#include "nvim/types_defs.h"

typedef struct {
  char *uc_name;             ///< The command name
  uint32_t uc_argt;          ///< The argument type
  char *uc_rep;              ///< The command's replacement string
  int64_t uc_def;            ///< The default value for a range/count
  int uc_compl;              ///< completion type
  cmd_addr_T uc_addr_type;   ///< The command's address type
  sctx_T uc_script_ctx;      ///< SCTX where the command was defined
  char *uc_compl_arg;        ///< completion argument if any
  LuaRef uc_compl_luaref;    ///< Reference to Lua completion function
  LuaRef uc_preview_luaref;  ///< Reference to Lua preview function
  LuaRef uc_luaref;          ///< Reference to Lua function
} ucmd_T;

enum { UC_BUFFER = 1, };  ///< -buffer: local to current buffer

extern garray_T ucmds;

#define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
#define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])

#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "usercmd.h.generated.h"
#endif