diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-08-23 16:11:26 +0200 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-10-30 10:52:05 +0100 |
commit | e8c0f909626094350be7ee7b524697804da38dc1 (patch) | |
tree | b6c5281cca8d9112897eb69adc649d13539d7936 /src/nvim/ex_docmd.h | |
parent | 561c1e39e05bac583f851de6165cd656058df7e1 (diff) | |
download | rneovim-e8c0f909626094350be7ee7b524697804da38dc1.tar.gz rneovim-e8c0f909626094350be7ee7b524697804da38dc1.tar.bz2 rneovim-e8c0f909626094350be7ee7b524697804da38dc1.zip |
Linted
Diffstat (limited to 'src/nvim/ex_docmd.h')
-rw-r--r-- | src/nvim/ex_docmd.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/nvim/ex_docmd.h b/src/nvim/ex_docmd.h index d2106c545f..e30ece3e1b 100644 --- a/src/nvim/ex_docmd.h +++ b/src/nvim/ex_docmd.h @@ -3,14 +3,15 @@ #include "nvim/ex_cmds_defs.h" -/* flags for do_cmdline() */ -#define DOCMD_VERBOSE 0x01 /* included command in error message */ -#define DOCMD_NOWAIT 0x02 /* don't call wait_return() and friends */ -#define DOCMD_REPEAT 0x04 /* repeat exec. until getline() returns NULL */ -#define DOCMD_KEYTYPED 0x08 /* don't reset KeyTyped */ -#define DOCMD_EXCRESET 0x10 /* reset exception environment (for debugging)*/ -#define DOCMD_KEEPLINE 0x20 /* keep typed line for repeating with "." */ -#define DOCMD_LIVE_PREVIEW 0x40 // Command is a live preview like incsubstitute +// flags for do_cmdline() +#define DOCMD_VERBOSE 0x01 // included command in error message +#define DOCMD_NOWAIT 0x02 // don't call wait_return() and friends +#define DOCMD_REPEAT 0x04 // repeat exec. until getline() returns NULL +#define DOCMD_KEYTYPED 0x08 // don't reset KeyTyped +#define DOCMD_EXCRESET 0x10 // reset exception environment (for debugging +#define DOCMD_KEEPLINE 0x20 // keep typed line for repeating with "." +#define DOCMD_LIVE_PREVIEW 0x40 // Command is a live preview like + // incsubstitution /* defines for eval_vars() */ #define VALID_PATH 1 |