mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.0222
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
*quickref.txt* For Vim version 7.0aa. Last change: 2006 Mar 10
|
*quickref.txt* For Vim version 7.0aa. Last change: 2006 Mar 12
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@@ -646,6 +646,8 @@ Short explanation of each option: *option-list*
|
|||||||
'cscopetag' 'cst' use cscope for tag commands
|
'cscopetag' 'cst' use cscope for tag commands
|
||||||
'cscopetagorder' 'csto' determines ":cstag" search order
|
'cscopetagorder' 'csto' determines ":cstag" search order
|
||||||
'cscopeverbose' 'csverb' give messages when adding a cscope database
|
'cscopeverbose' 'csverb' give messages when adding a cscope database
|
||||||
|
'cursorcolumn' 'cuc' highlight the screen column of the cursor
|
||||||
|
'cursorline' 'cul' highlight the screen line of the cursor
|
||||||
'debug' set to "msg" to see all error messages
|
'debug' set to "msg" to see all error messages
|
||||||
'define' 'def' pattern to be used to find a macro definition
|
'define' 'def' pattern to be used to find a macro definition
|
||||||
'delcombine' 'deco' delete combining characters on their own
|
'delcombine' 'deco' delete combining characters on their own
|
||||||
|
@@ -602,7 +602,7 @@ diff_redraw(dofold)
|
|||||||
for (wp = firstwin; wp != NULL; wp = wp->w_next)
|
for (wp = firstwin; wp != NULL; wp = wp->w_next)
|
||||||
if (wp->w_p_diff)
|
if (wp->w_p_diff)
|
||||||
{
|
{
|
||||||
redraw_win_later(wp, NOT_VALID);
|
redraw_win_later(wp, SOME_VALID);
|
||||||
#ifdef FEAT_FOLDING
|
#ifdef FEAT_FOLDING
|
||||||
if (dofold && foldmethodIsDiff(wp))
|
if (dofold && foldmethodIsDiff(wp))
|
||||||
foldUpdateAll(wp);
|
foldUpdateAll(wp);
|
||||||
|
@@ -25,6 +25,7 @@ void hl_set_fg_color_name __ARGS((char_u *name));
|
|||||||
void clear_hl_tables __ARGS((void));
|
void clear_hl_tables __ARGS((void));
|
||||||
int hl_combine_attr __ARGS((int char_attr, int prim_attr));
|
int hl_combine_attr __ARGS((int char_attr, int prim_attr));
|
||||||
attrentry_T *syn_gui_attr2entry __ARGS((int attr));
|
attrentry_T *syn_gui_attr2entry __ARGS((int attr));
|
||||||
|
int syn_attr2attr __ARGS((int attr));
|
||||||
attrentry_T *syn_term_attr2entry __ARGS((int attr));
|
attrentry_T *syn_term_attr2entry __ARGS((int attr));
|
||||||
attrentry_T *syn_cterm_attr2entry __ARGS((int attr));
|
attrentry_T *syn_cterm_attr2entry __ARGS((int attr));
|
||||||
char_u *highlight_has_attr __ARGS((int id, int flag, int modec));
|
char_u *highlight_has_attr __ARGS((int id, int flag, int modec));
|
||||||
|
Reference in New Issue
Block a user