diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-26 11:13:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-26 11:13:20 +0800 |
commit | 1635c9e75e21e07c4331cf983e14a11c7e09b119 (patch) | |
tree | 2acd3792ff17e17b9caa5c7b90e63710ffcba103 /src/nvim/mapping_defs.h | |
parent | b1cfb299df2ef412339f594173ed23c75c090c8a (diff) | |
download | rneovim-1635c9e75e21e07c4331cf983e14a11c7e09b119.tar.gz rneovim-1635c9e75e21e07c4331cf983e14a11c7e09b119.tar.bz2 rneovim-1635c9e75e21e07c4331cf983e14a11c7e09b119.zip |
refactor: move some structs out of buffer_defs.h (#24878)
Diffstat (limited to 'src/nvim/mapping_defs.h')
-rw-r--r-- | src/nvim/mapping_defs.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/nvim/mapping_defs.h b/src/nvim/mapping_defs.h new file mode 100644 index 0000000000..ff0633308b --- /dev/null +++ b/src/nvim/mapping_defs.h @@ -0,0 +1,29 @@ +#ifndef NVIM_MAPPING_DEFS_H +#define NVIM_MAPPING_DEFS_H + +#include <stdbool.h> + +#include "nvim/eval/typval_defs.h" +#include "nvim/types.h" + +/// 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 +}; + +#endif // NVIM_MAPPING_DEFS_H |