mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 9.1.0810: cannot easily adjust the |:find| command
Problem: cannot easily adjust the |:find| command Solution: Add support for the 'findexpr' option (Yegappan Lakshmanan) closes: #15901 closes: #15905 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
626b6ab486
commit
aeb1c97db5
@@ -324,6 +324,9 @@ check_buf_options(buf_T *buf)
|
||||
check_string_option(&buf->b_p_efm);
|
||||
#endif
|
||||
check_string_option(&buf->b_p_ep);
|
||||
#ifdef FEAT_EVAL
|
||||
check_string_option(&buf->b_p_fexpr);
|
||||
#endif
|
||||
check_string_option(&buf->b_p_path);
|
||||
check_string_option(&buf->b_p_tags);
|
||||
check_string_option(&buf->b_p_tc);
|
||||
@@ -3132,8 +3135,8 @@ expand_set_nrformats(optexpand_T *args, int *numMatches, char_u ***matches)
|
||||
#if defined(FEAT_EVAL) || defined(PROTO)
|
||||
/*
|
||||
* One of the '*expr' options is changed: 'balloonexpr', 'diffexpr',
|
||||
* 'foldexpr', 'foldtext', 'formatexpr', 'includeexpr', 'indentexpr',
|
||||
* 'patchexpr', 'printexpr' and 'charconvert'.
|
||||
* 'findexpr', 'foldexpr', 'foldtext', 'formatexpr', 'includeexpr',
|
||||
* 'indentexpr', 'patchexpr', 'printexpr' and 'charconvert'.
|
||||
*
|
||||
*/
|
||||
char *
|
||||
|
Reference in New Issue
Block a user