Mercurial > vim
view src/proto/mark.pro @ 10307:f4798aebef67 v8.0.0049
commit https://github.com/vim/vim/commit/2f97912800e86a296c001832bbbf2fc425f1e533
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Oct 27 17:27:44 2016 +0200
patch 8.0.0049
Problem: When a match ends in part of concealed text highlighting, it might
mess up concealing by resetting prev_syntax_id.
Solution: Do not reset prev_syntax_id and add a test to verify. (Christian
Brabandt, closes #1092)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 27 Oct 2016 17:30:04 +0200 |
parents | 1003973c99df |
children | 6b26e044b6f5 |
line wrap: on
line source
/* mark.c */ int setmark(int c); int setmark_pos(int c, pos_T *pos, int fnum); void setpcmark(void); void checkpcmark(void); pos_T *movemark(int count); pos_T *movechangelist(int count); pos_T *getmark_buf(buf_T *buf, int c, int changefile); pos_T *getmark(int c, int changefile); pos_T *getmark_buf_fnum(buf_T *buf, int c, int changefile, int *fnum); pos_T *getnextmark(pos_T *startpos, int dir, int begin_line); void fmarks_check_names(buf_T *buf); int check_mark(pos_T *pos); void clrallmarks(buf_T *buf); char_u *fm_getname(fmark_T *fmark, int lead_len); void do_marks(exarg_T *eap); void ex_delmarks(exarg_T *eap); void ex_jumps(exarg_T *eap); void ex_clearjumps(exarg_T *eap); void ex_changes(exarg_T *eap); void mark_adjust(linenr_T line1, linenr_T line2, long amount, long amount_after); void mark_col_adjust(linenr_T lnum, colnr_T mincol, long lnum_amount, long col_amount); void copy_jumplist(win_T *from, win_T *to); void free_jumplist(win_T *wp); void set_last_cursor(win_T *win); void free_all_marks(void); int read_viminfo_filemark(vir_T *virp, int force); void prepare_viminfo_marks(void); void finish_viminfo_marks(void); void handle_viminfo_mark(garray_T *values, int force); void write_viminfo_filemarks(FILE *fp); int removable(char_u *name); void write_viminfo_marks(FILE *fp_out, garray_T *buflist); void copy_viminfo_marks(vir_T *virp, FILE *fp_out, garray_T *buflist, int eof, int flags); /* vim: set ft=c : */