diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-23 22:10:27 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-23 22:10:27 +0200 |
commit | f5963f719eb85e8aa71aeb5c23c4edf4949adef1 (patch) | |
tree | 9c3ab6deeb29ff964cbd77d01e885b3237f6c59a /src/globals.h | |
parent | c88ebf7fa81833b401423214c62d0ecfaaa68b78 (diff) | |
download | vim-git-f5963f719eb85e8aa71aeb5c23c4edf4949adef1.tar.gz |
Add the 'concealcursor' option to decide when the cursor line is to be
concealed or not.
Rename 'conc' to 'cole' as the short name for 'conceallevel'.
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h index bb5f3cfc6..93f151429 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1343,6 +1343,11 @@ EXTERN disptick_T display_tick INIT(= 0); EXTERN linenr_T spell_redraw_lnum INIT(= 0); #endif +#ifdef FEAT_CONCEAL +/* Set when the cursor line needs to be redrawn. */ +EXTERN int need_cursor_line_redraw INIT(= FALSE); +#endif + #ifdef ALT_X_INPUT /* we need to be able to go into the dispatch loop while processing a command * received via alternate input. However, we don't want to process another |