Home
last modified time | relevance | path

Searched refs:b_s (Results 1 – 13 of 13) sorted by relevance

/vim-8.2.3635/src/
H A Dbuffer.c985 ga_clear(&buf->b_s.b_langp); in free_buffer_stuff()
1810 curwin->w_s = &(curbuf->b_s); in enter_buffer()
2189 hash_init(&buf->b_s.b_keywtab); in buflist_new()
2190 hash_init(&buf->b_s.b_keywtab_ic); in buflist_new()
2309 clear_string_option(&buf->b_s.b_syn_isk); in free_buf_options()
2312 clear_string_option(&buf->b_s.b_p_spc); in free_buf_options()
2313 clear_string_option(&buf->b_s.b_p_spf); in free_buf_options()
2314 vim_regfree(buf->b_s.b_cap_prog); in free_buf_options()
2315 buf->b_s.b_cap_prog = NULL; in free_buf_options()
2316 clear_string_option(&buf->b_s.b_p_spl); in free_buf_options()
[all …]
H A Doptionstr.c250 check_string_option(&buf->b_s.b_syn_isk); in check_buf_options()
253 check_string_option(&buf->b_s.b_p_spc); in check_buf_options()
254 check_string_option(&buf->b_s.b_p_spf); in check_buf_options()
255 check_string_option(&buf->b_s.b_p_spl); in check_buf_options()
256 check_string_option(&buf->b_s.b_p_spo); in check_buf_options()
H A Dsyntax.c1172 syn_stack_apply_changes_block(&buf->b_s, buf); in syn_stack_apply_changes()
1176 if ((wp->w_buffer == buf) && (wp->w_s != &buf->b_s)) in syn_stack_apply_changes()
3571 if (wp->w_s != &wp->w_buffer->b_s) in reset_synblock()
3575 wp->w_s = &wp->w_buffer->b_s; in reset_synblock()
3688 if (curwin->w_s == &curwin->w_buffer->b_s) in syn_cmd_clear()
6323 if (curwin->w_s == &curwin->w_buffer->b_s) in ex_ownsyntax()
H A Doption.c6022 buf->b_s.b_syn_isk = empty_option; in buf_copy_options()
6025 buf->b_s.b_p_spc = vim_strsave(p_spc); in buf_copy_options()
6027 (void)compile_cap_prog(&buf->b_s); in buf_copy_options()
6028 buf->b_s.b_p_spf = vim_strsave(p_spf); in buf_copy_options()
6030 buf->b_s.b_p_spl = vim_strsave(p_spl); in buf_copy_options()
6032 buf->b_s.b_p_spo = vim_strsave(p_spo); in buf_copy_options()
H A Dspellfile.c6361 char_u *lstart = curbuf->b_s.b_p_spl; in init_spellfile()
6387 vim_strncpy(buf, curbuf->b_s.b_p_spl, in init_spellfile()
6388 lstart - curbuf->b_s.b_p_spl - 1); in init_spellfile()
6397 vim_strncpy(buf, curbuf->b_s.b_p_spl, in init_spellfile()
6398 lend - curbuf->b_s.b_p_spl); in init_spellfile()
H A Dautocmd.c1638 if (curwin->w_s == &curbuf->b_s) in aucmd_restbuf()
1639 curwin->w_s = &aco->new_curbuf.br_buf->b_s; in aucmd_restbuf()
H A Dwindow.c1368 newp->w_s = &(oldp->w_buffer->b_s); in win_init()
3688 wp->w_s = &wp->w_buffer->b_s; in win_init_empty()
3785 curwin->w_s = &(curbuf->b_s); in win_alloc_firstwin()
H A Dex_cmds.c2839 || curwin->w_s == &(curwin->w_buffer->b_s)) in do_ecmd()
2840 curwin->w_s = &(buf->b_s); in do_ecmd()
H A Dspellsuggest.c810 for (i = 0; i < curbuf->b_s.b_langp.ga_len; ++i) in spell_find_suggest()
812 lp = LANGP_ENTRY(curbuf->b_s.b_langp, i); in spell_find_suggest()
H A Dstructs.h3121 synblock_T b_s; // Info related to syntax highlighting. w_s member
H A Ddrawscreen.c1581 mod_top -= buf->b_s.b_syn_sync_linebreaks; in win_update()
H A Dspell.c2449 ga_clear(&buf->b_s.b_langp); in spell_free_all()
H A Devalfunc.c9300 else if (*curbuf->b_s.b_p_spl != NUL) in f_spellbadword()