Mercurial > vim
view src/proto/syntax.pro @ 32743:df63fa700fc6 v9.0.1691
patch 9.0.1691: wrong viewport restored for incsearch and smoothscroll
Commit: https://github.com/vim/vim/commit/7b7b4cb6f274e7bace127107b0d2752133c4020b
Author: zeertzjq <zeertzjq@outlook.com>
Date: Fri Aug 11 23:48:27 2023 +0200
patch 9.0.1691: wrong viewport restored for incsearch and smoothscroll
Problem: wrong viewport restored for incsearch and smoothscroll
Solution: Save and restore skipcol as well
closes: #12713
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 12 Aug 2023 00:00:05 +0200 |
parents | fbeebe308514 |
children |
line wrap: on
line source
/* syntax.c */ void syntax_start(win_T *wp, linenr_T lnum); void syn_stack_free_all(synblock_T *block); void syn_stack_apply_changes(buf_T *buf); void syntax_end_parsing(win_T *wp, linenr_T lnum); int syntax_check_changed(linenr_T lnum); int get_syntax_attr(colnr_T col, int *can_spell, int keep_state); void syntax_clear(synblock_T *block); void reset_synblock(win_T *wp); void ex_syntax(exarg_T *eap); void ex_ownsyntax(exarg_T *eap); int syntax_present(win_T *win); void reset_expand_highlight(void); void set_context_in_echohl_cmd(expand_T *xp, char_u *arg); void set_context_in_syntax_cmd(expand_T *xp, char_u *arg); char_u *get_syntax_name(expand_T *xp, int idx); int syn_get_id(win_T *wp, long lnum, colnr_T col, int trans, int *spellp, int keep_state); int get_syntax_info(int *seqnrp); int syn_get_sub_char(void); int syn_get_stack_item(int i); int syn_get_foldlevel(win_T *wp, long lnum); void ex_syntime(exarg_T *eap); char_u *get_syntime_arg(expand_T *xp, int idx); /* vim: set ft=c : */