diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-02-09 12:13:34 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-02-09 12:13:34 +0100 |
commit | bc0e9adae9c253f36803665180e4b576d1e725ab (patch) | |
tree | 858a1a7156699a6b2e14e51feb4bf8b296d4a865 /src/globals.h | |
parent | dff72ba4459f54cac2ce40eea3d92097660c7b9f (diff) | |
download | vim-git-bc0e9adae9c253f36803665180e4b576d1e725ab.tar.gz |
patch 8.0.1479: insert mode completion state is confusingv8.0.1479
Problem: Insert mode completion state is confusing.
Solution: Move ctrl_x_mode into edit.c. Add CTRL_X_NORMAL for zero.
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h index 9f1864ddd..737812cdd 100644 --- a/src/globals.h +++ b/src/globals.h @@ -964,7 +964,6 @@ EXTERN char_u *edit_submode INIT(= NULL); /* msg for CTRL-X submode */ EXTERN char_u *edit_submode_pre INIT(= NULL); /* prepended to edit_submode */ EXTERN char_u *edit_submode_extra INIT(= NULL);/* appended to edit_submode */ EXTERN hlf_T edit_submode_highl; /* highl. method for extra info */ -EXTERN int ctrl_x_mode INIT(= 0); /* Which Ctrl-X mode are we in? */ #endif EXTERN int no_abbr INIT(= TRUE); /* TRUE when no abbreviations loaded */ |