Mercurial > vim
view src/proto/syntax.pro @ 34385:2f1489b02823 v9.1.0119
patch 9.1.0119: can move away from cmdwin using win_splitmove()
Commit: https://github.com/vim/vim/commit/f865895c874b0936b0563ebfef7490aac8cb8a1f
Author: Sean Dewar <6256228+seandewar@users.noreply.github.com>
Date: Tue Feb 20 22:05:10 2024 +0100
patch 9.1.0119: can move away from cmdwin using win_splitmove()
Problem: can switch windows while textlocked via f_win_gotoid and
f_win_splitmove (which also allows switching in the cmdwin).
Solution: Check text_or_buf_locked in f_win_splitmove()
(Sean Dewar)
While at it, call text_or_buf_locked() in f_win_gotoid() instead of
testing for cmdwin_type() (which text_buf_locked() does and
in addition will also verify that the buffer is not locked).
closes: #14042
Signed-off-by: Sean Dewar <6256228+seandewar@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 20 Feb 2024 22:30:08 +0100 |
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 : */