mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 01:08:20 +00:00
refactor(optionstr.c): break up did_set_string_option 26
This commit is contained in:
@@ -3854,10 +3854,11 @@ static buf_T *qf_find_buf(qf_info_T *qi)
|
||||
}
|
||||
|
||||
/// Process the 'quickfixtextfunc' option value.
|
||||
/// @return OK or FAIL
|
||||
int qf_process_qftf_option(void)
|
||||
void qf_process_qftf_option(char **errmsg)
|
||||
{
|
||||
return option_set_callback_func(p_qftf, &qftf_cb);
|
||||
if (option_set_callback_func(p_qftf, &qftf_cb) == FAIL) {
|
||||
*errmsg = e_invarg;
|
||||
}
|
||||
}
|
||||
|
||||
/// Update the w:quickfix_title variable in the quickfix/location list window in
|
||||
|
Reference in New Issue
Block a user