代码拉取完成,页面将自动刷新
#pragma once
#include <stdbool.h>
#include "nvim/buffer_defs.h" // IWYU pragma: keep
#include "nvim/cmdexpand_defs.h" // IWYU pragma: keep
#include "nvim/ex_cmds_defs.h" // IWYU pragma: keep
#include "nvim/getchar_defs.h"
#include "nvim/types_defs.h" // IWYU pragma: keep
#include "nvim/vim_defs.h" // IWYU pragma: keep
/// flags for do_cmdline()
enum {
DOCMD_VERBOSE = 0x01, ///< included command in error message
DOCMD_NOWAIT = 0x02, ///< don't call wait_return() and friends
DOCMD_REPEAT = 0x04, ///< repeat exec. until getline() returns NULL
DOCMD_KEYTYPED = 0x08, ///< don't reset KeyTyped
DOCMD_EXCRESET = 0x10, ///< reset exception environment (for debugging
DOCMD_KEEPLINE = 0x20, ///< keep typed line for repeating with "."
};
/// defines for eval_vars()
enum {
VALID_PATH = 1,
VALID_HEAD = 2,
};
// Whether a command index indicates a user command.
#define IS_USER_CMDIDX(idx) ((int)(idx) < 0)
enum { DIALOG_MSG_SIZE = 1000, }; ///< buffer size for dialog_msg()
/// Structure used to save the current state. Used when executing Normal mode
/// commands while in any other mode.
typedef struct {
int save_msg_scroll;
int save_restart_edit;
bool save_msg_didout;
int save_State;
bool save_finish_op;
int save_opcount;
int save_reg_executing;
bool save_pending_end_reg_executing;
tasave_T tabuf;
} save_state_T;
#include "ex_docmd.h.generated.h"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。