}
/*
- * When loading a file from the quickfix, the auto commands may modify it.
+ * When loading a file from the quickfix, the autocommands may modify it.
* This may invalidate the current quickfix entry. This function checks
* whether an entry is still present in the quickfix list.
* Similar to location list.
if (win->w_llist == NULL)
{
win->w_llist = ll_ref;
- ll_ref->qf_refcount++;
+ if (ll_ref != NULL)
+ ll_ref->qf_refcount++;
}
}
if (curbuf == old_curbuf)
setpcmark();
- qf_jump_goto_line(qf_ptr->qf_lnum, qf_ptr->qf_col, qf_ptr->qf_viscol,
- qf_ptr->qf_pattern);
+ if (qf_ptr != NULL)
+ qf_jump_goto_line(qf_ptr->qf_lnum, qf_ptr->qf_col,
+ qf_ptr->qf_viscol, qf_ptr->qf_pattern);
#ifdef FEAT_FOLDING
if ((fdo_flags & FDO_QUICKFIX) && old_KeyTyped)
qi->qf_lists[qf_idx].qf_changedtick++;
}
+/*
+ * Return the quickfix/location list number with the given identifier.
+ * Returns -1 if list is not found.
+ */
+ static int
+qf_id2nr(qf_info_T *qi, int_u qfid)
+{
+ int qf_idx;
+
+ for (qf_idx = 0; qf_idx < qi->qf_listcount; qf_idx++)
+ if (qi->qf_lists[qf_idx].qf_id == qfid)
+ return qf_idx;
+ return INVALID_QFIDX;
+}
+
/*
* Return TRUE when using ":vimgrep" for ":grep".
*/
qf_info_T *qi = &ql_info;
int res;
char_u *au_name = NULL;
+ int_u save_qfid;
/* Redirect ":grep" to ":vimgrep" if 'grepprg' is "internal". */
if (grep_internal(eap->cmdidx))
&& eap->cmdidx != CMD_lgrepadd),
qf_cmdtitle(*eap->cmdlinep), enc);
if (wp != NULL)
+ {
qi = GET_LOC_LIST(wp);
- if (res >= 0 && qi != NULL)
+ if (qi == NULL)
+ goto cleanup;
+ }
+ if (res >= 0)
qf_list_changed(qi, qi->qf_curlist);
+ // Remember the current quickfix list identifier, so that we can
+ // check for autocommands changing the current quickfix list.
+ save_qfid = qi->qf_lists[qi->qf_curlist].qf_id;
if (au_name != NULL)
- {
apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
curbuf->b_fname, TRUE, curbuf);
- if (qi != NULL && qi->qf_curlist < qi->qf_listcount)
- res = qi->qf_lists[qi->qf_curlist].qf_count;
- else
- res = 0;
- }
- if (res > 0 && !eap->forceit)
+ if (res > 0 && !eap->forceit && qflist_valid(wp, save_qfid))
+ {
+ // If autocommands changed the current list, then restore it
+ if (qi->qf_lists[qi->qf_curlist].qf_id != save_qfid)
+ qi->qf_curlist = qf_id2nr(qi, save_qfid);
qf_jump(qi, 0, 0, FALSE); /* display first error */
+ }
+cleanup:
mch_remove(fname);
vim_free(fname);
vim_free(cmd);
win_T *wp = NULL;
qf_info_T *qi = &ql_info;
char_u *au_name = NULL;
- int save_qfid = 0; /* init for gcc */
+ int_u save_qfid = 0; /* init for gcc */
int res;
switch (eap->cmdidx)
&& eap->cmdidx != CMD_laddfile),
qf_cmdtitle(*eap->cmdlinep), enc);
if (wp != NULL)
+ {
qi = GET_LOC_LIST(wp);
- if (res >= 0 && qi != NULL)
+ if (qi == NULL)
+ return;
+ }
+ if (res >= 0)
qf_list_changed(qi, qi->qf_curlist);
- if (qi != NULL)
- save_qfid = qi->qf_lists[qi->qf_curlist].qf_id;
+ save_qfid = qi->qf_lists[qi->qf_curlist].qf_id;
if (au_name != NULL)
apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf);
- /* An autocmd might have freed the quickfix/location list. Check whether it
- * is still valid. */
- if (qi != NULL && !qflist_valid(wp, save_qfid))
- return;
- if (res > 0 && (eap->cmdidx == CMD_cfile || eap->cmdidx == CMD_lfile))
+ // Jump to the first error for a new list and if autocmds didn't
+ // free the list.
+ if (res > 0 && (eap->cmdidx == CMD_cfile || eap->cmdidx == CMD_lfile)
+ && qflist_valid(wp, save_qfid))
+ {
+ // If autocommands changed the current list, then restore it
+ if (qi->qf_lists[qi->qf_curlist].qf_id != save_qfid)
+ qi->qf_curlist = qf_id2nr(qi, save_qfid);
qf_jump(qi, 0, 0, eap->forceit); /* display first error */
-}
-
-/*
- * Return the quickfix/location list number with the given identifier.
- * Returns -1 if list is not found.
- */
- static int
-qf_id2nr(qf_info_T *qi, int_u qfid)
-{
- int qf_idx;
-
- for (qf_idx = 0; qf_idx < qi->qf_listcount; qf_idx++)
- if (qi->qf_lists[qf_idx].qf_id == qfid)
- return qf_idx;
- return INVALID_QFIDX;
+ }
}
/*
if (!qflist_valid(wp, save_qfid))
goto theend;
+ // If autocommands changed the current list, then restore it
+ if (qi->qf_lists[qi->qf_curlist].qf_id != save_qfid)
+ qi->qf_curlist = qf_id2nr(qi, save_qfid);
+
/* Jump to first match. */
if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
{
/* need to open the memfile before putting the buffer in a window */
if (ml_open(newbuf) == OK)
{
- /* Make sure this buffer isn't wiped out by auto commands. */
+ /* Make sure this buffer isn't wiped out by autocommands. */
++newbuf->b_locked;
/* set curwin/curbuf to buf and save a few things */
qf_info_T *qi = &ql_info;
char_u *au_name = NULL;
int res;
+ int_u save_qfid;
+ win_T *wp = NULL;
switch (eap->cmdidx)
{
qi = ll_get_or_alloc_list(curwin);
if (qi == NULL)
return;
+ wp = curwin;
}
if (*eap->arg == NUL)
qf_title, NULL);
if (res >= 0)
qf_list_changed(qi, qi->qf_curlist);
+
+ // Remember the current quickfix list identifier, so that we can
+ // check for autocommands changing the current quickfix list.
+ save_qfid = qi->qf_lists[qi->qf_curlist].qf_id;
if (au_name != NULL)
{
buf_T *curbuf_old = curbuf;
// be invalid.
res = 0;
}
+ // Jump to the first error for a new list and if autocmds didn't
+ // free the list.
if (res > 0 && (eap->cmdidx == CMD_cbuffer ||
- eap->cmdidx == CMD_lbuffer))
+ eap->cmdidx == CMD_lbuffer)
+ && qflist_valid(wp, save_qfid))
+ {
+ // If autocommands changed the current list, then restore it
+ if (qi->qf_lists[qi->qf_curlist].qf_id != save_qfid)
+ qi->qf_curlist = qf_id2nr(qi, save_qfid);
qf_jump(qi, 0, 0, eap->forceit); /* display first error */
+ }
}
}
}
qf_info_T *qi = &ql_info;
char_u *au_name = NULL;
int res;
+ int_u save_qfid;
+ win_T *wp = NULL;
switch (eap->cmdidx)
{
qi = ll_get_or_alloc_list(curwin);
if (qi == NULL)
return;
+ wp = curwin;
}
/* Evaluate the expression. When the result is a string or a list we can
qf_cmdtitle(*eap->cmdlinep), NULL);
if (res >= 0)
qf_list_changed(qi, qi->qf_curlist);
+
+ // Remember the current quickfix list identifier, so that we can
+ // check for autocommands changing the current quickfix list.
+ save_qfid = qi->qf_lists[qi->qf_curlist].qf_id;
if (au_name != NULL)
apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
curbuf->b_fname, TRUE, curbuf);
+
+ // Jump to the first error for a new list and if autocmds didn't
+ // free the list.
if (res > 0 && (eap->cmdidx == CMD_cexpr
|| eap->cmdidx == CMD_lexpr)
- && qi == GET_LOC_LIST(curwin))
- // Jump to the first error if autocmds didn't free the list.
+ && qflist_valid(wp, save_qfid))
+ {
+ // If autocommands changed the current list, then restore it
+ if (qi->qf_lists[qi->qf_curlist].qf_id != save_qfid)
+ qi->qf_curlist = qf_id2nr(qi, save_qfid);
qf_jump(qi, 0, 0, eap->forceit);
+ }
}
else
EMSG(_("E777: String or List expected"));
augroup END
endfunc
-func Test_setloclist_in_aucmd()
+" Test for an autocmd freeing the quickfix/location list when cexpr/lexpr is
+" running
+func Xexpr_acmd_freelist(cchar)
+ call s:setup_commands(a:cchar)
+
" This was using freed memory.
augroup nasty
- au * * call setloclist(0, [], 'f')
+ au * * call g:Xsetlist([], 'f')
augroup END
- lexpr "x"
+ Xexpr "x"
augroup nasty
au!
augroup END
endfunc
+
+func Test_cexpr_acmd_freelist()
+ call Xexpr_acmd_freelist('c')
+ call Xexpr_acmd_freelist('l')
+endfunc
+
+" Test for commands that create a new quickfix/location list and jump to the
+" first error automatically.
+func Xjumpto_first_error_test(cchar)
+ call s:setup_commands(a:cchar)
+
+ call s:create_test_file('Xtestfile1')
+ call s:create_test_file('Xtestfile2')
+ let l = ['Xtestfile1:2:Line2', 'Xtestfile2:4:Line4']
+
+ " Test for cexpr/lexpr
+ enew
+ Xexpr l
+ call assert_equal('Xtestfile1', bufname(''))
+ call assert_equal(2, line('.'))
+
+ " Test for cfile/lfile
+ enew
+ call writefile(l, 'Xerr')
+ Xfile Xerr
+ call assert_equal('Xtestfile1', bufname(''))
+ call assert_equal(2, line('.'))
+
+ " Test for cbuffer/lbuffer
+ edit Xerr
+ Xbuffer
+ call assert_equal('Xtestfile1', bufname(''))
+ call assert_equal(2, line('.'))
+
+ call delete('Xerr')
+ call delete('Xtestfile1')
+ call delete('Xtestfile2')
+endfunc
+
+func Test_jumpto_first_error()
+ call Xjumpto_first_error_test('c')
+ call Xjumpto_first_error_test('l')
+endfunc
+
+" Test for a quickfix autocmd changing the quickfix/location list before
+" jumping to the first error in the new list.
+func Xautocmd_changelist(cchar)
+ call s:setup_commands(a:cchar)
+
+ " Test for cfile/lfile
+ call s:create_test_file('Xtestfile1')
+ call s:create_test_file('Xtestfile2')
+ Xexpr 'Xtestfile1:2:Line2'
+ autocmd QuickFixCmdPost * Xolder
+ call writefile(['Xtestfile2:4:Line4'], 'Xerr')
+ Xfile Xerr
+ call assert_equal('Xtestfile2', bufname(''))
+ call assert_equal(4, line('.'))
+ autocmd! QuickFixCmdPost
+
+ " Test for cbuffer/lbuffer
+ call g:Xsetlist([], 'f')
+ Xexpr 'Xtestfile1:2:Line2'
+ autocmd QuickFixCmdPost * Xolder
+ call writefile(['Xtestfile2:4:Line4'], 'Xerr')
+ edit Xerr
+ Xbuffer
+ call assert_equal('Xtestfile2', bufname(''))
+ call assert_equal(4, line('.'))
+ autocmd! QuickFixCmdPost
+
+ " Test for cexpr/lexpr
+ call g:Xsetlist([], 'f')
+ Xexpr 'Xtestfile1:2:Line2'
+ autocmd QuickFixCmdPost * Xolder
+ Xexpr 'Xtestfile2:4:Line4'
+ call assert_equal('Xtestfile2', bufname(''))
+ call assert_equal(4, line('.'))
+ autocmd! QuickFixCmdPost
+
+ " Test for grep/lgrep
+ call g:Xsetlist([], 'f')
+ Xexpr 'Xtestfile1:2:Line2'
+ autocmd QuickFixCmdPost * Xolder
+ silent Xgrep Line5 Xtestfile2
+ call assert_equal('Xtestfile2', bufname(''))
+ call assert_equal(5, line('.'))
+ autocmd! QuickFixCmdPost
+
+ " Test for vimgrep/lvimgrep
+ call g:Xsetlist([], 'f')
+ Xexpr 'Xtestfile1:2:Line2'
+ autocmd QuickFixCmdPost * Xolder
+ silent Xvimgrep Line5 Xtestfile2
+ call assert_equal('Xtestfile2', bufname(''))
+ call assert_equal(5, line('.'))
+ autocmd! QuickFixCmdPost
+
+ call delete('Xerr')
+ call delete('Xtestfile1')
+ call delete('Xtestfile2')
+endfunc
+
+func Test_autocmd_changelist()
+ call Xautocmd_changelist('c')
+ call Xautocmd_changelist('l')
+endfunc