diff options
Diffstat (limited to 'src/nvim/main.h')
-rw-r--r-- | src/nvim/main.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/main.h b/src/nvim/main.h index c39fc1ed4a..f8cf26961c 100644 --- a/src/nvim/main.h +++ b/src/nvim/main.h @@ -23,15 +23,17 @@ typedef struct { char cmds_tofree[MAX_ARG_CMDS]; // commands that need free() int n_pre_commands; // no. of commands from --cmd char *pre_commands[MAX_ARG_CMDS]; // commands from --cmd argument + char *luaf; // Lua script filename from "-l" int edit_type; // type of editing to do char *tagname; // tag from -t argument char *use_ef; // 'errorfile' from -q argument bool input_isatty; // stdin is a terminal + bool input_istext; // stdin is text, not executable (-E/-Es) bool output_isatty; // stdout is a terminal bool err_isatty; // stderr is a terminal - bool input_neverscript; // never treat stdin as script (-E/-Es) + int no_swap_file; // "-n" argument used int use_debug_break_level; int window_count; // number of windows to use |