diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-25 19:35:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 19:35:23 +0200 |
commit | 192adfe99f33778a85e11fbfdceb37f347a3d235 (patch) | |
tree | 529e922ff73a8907df3538ac25f0efb685348f6b /src/nvim/main.h | |
parent | f15c74550252a553eaecb3f55af60d7f7ae27540 (diff) | |
parent | 8ce092941862a18a6591f62f398ed9e8bd9202be (diff) | |
download | rneovim-192adfe99f33778a85e11fbfdceb37f347a3d235.tar.gz rneovim-192adfe99f33778a85e11fbfdceb37f347a3d235.tar.bz2 rneovim-192adfe99f33778a85e11fbfdceb37f347a3d235.zip |
Merge pull request #14311 from matveyt/nomode_ce
refactor(state): Remove EXMODE_NORMAL
Diffstat (limited to 'src/nvim/main.h')
-rw-r--r-- | src/nvim/main.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/main.h b/src/nvim/main.h index 61252f2bce..d387e6d668 100644 --- a/src/nvim/main.h +++ b/src/nvim/main.h @@ -30,6 +30,7 @@ typedef struct { bool input_isatty; // stdin is a terminal 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 |