blob: 6691c5ac3b18fd73f5caba33a90aa186e5642889 (
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
|
#pragma once
#include <stdbool.h>
#include "nvim/eval/typval_defs.h"
#include "nvim/types_defs.h"
/// Maximum length of key sequence to be mapped.
enum { MAXMAPLEN = 50, };
/// Structure used for mappings and abbreviations.
typedef struct mapblock mapblock_T;
struct mapblock {
mapblock_T *m_next; ///< next mapblock in list
char *m_keys; ///< mapped from, lhs
char *m_str; ///< mapped to, rhs
char *m_orig_str; ///< rhs as entered by the user
LuaRef m_luaref; ///< lua function reference as rhs
int m_keylen; ///< strlen(m_keys)
int m_mode; ///< valid mode
int m_simplified; ///< m_keys was simplified
int m_noremap; ///< if non-zero no re-mapping for m_str
char m_silent; ///< <silent> used, don't echo commands
char m_nowait; ///< <nowait> used
char m_expr; ///< <expr> used, m_str is an expression
sctx_T m_script_ctx; ///< SCTX where map was defined
char *m_desc; ///< description of mapping
bool m_replace_keycodes; ///< replace keycodes in result of expression
};
|