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/proto/screen.pro | |
parent | c88ebf7fa81833b401423214c62d0ecfaaa68b78 (diff) | |
download | vim-f5963f719eb85e8aa71aeb5c23c4edf4949adef1.zip |
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/proto/screen.pro')
-rw-r--r-- | src/proto/screen.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/screen.pro b/src/proto/screen.pro index 05114d0e6..efaf4c6d0 100644 --- a/src/proto/screen.pro +++ b/src/proto/screen.pro @@ -8,6 +8,8 @@ void redraw_buf_later __ARGS((buf_T *buf, int type)); void redrawWinline __ARGS((linenr_T lnum, int invalid)); void update_curbuf __ARGS((int type)); void update_screen __ARGS((int type)); +int conceal_cursor_line __ARGS((win_T *wp)); +void conceal_check_cursur_line_redraw __ARGS((void)); void update_single_line __ARGS((win_T *wp, linenr_T lnum)); void update_debug_sign __ARGS((buf_T *buf, linenr_T lnum)); void updateWindow __ARGS((win_T *wp)); |