#ifndef normal_hh_INCLUDED #define normal_hh_INCLUDED #include "optional.hh" #include "keys.hh" #include "keymap_manager.hh" #include "string.hh" #include "exception.hh" namespace Kakoune { class Context; struct no_selections_remaining : runtime_error { no_selections_remaining() : runtime_error("no selections remaining") {} }; struct NormalParams { int count; char reg; }; struct NormalCmd { StringView docstring = {}; void (*func)(Context& context, NormalParams params) = nullptr; }; Optional get_normal_command(Key key); struct KeyInfo { ConstArrayView keys; StringView docstring; }; String build_autoinfo_for_mapping(Context& context, KeymapMode mode, ConstArrayView built_ins); } #endif // normal_hh_INCLUDED