diff options
Diffstat (limited to 'src/quickfix.c')
-rw-r--r-- | src/quickfix.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c index 38f7d95d0..8d76e2861 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -2514,7 +2514,7 @@ jumpend: { /* The buffer is still loaded, the Filetype autocommands * need to be done now, in that buffer. And then the - * modelines (again). */ + * modelines need to be done (again). */ aucmd_prepbuf(&aco, buf); apply_autocmds(EVENT_FILETYPE, buf->b_p_ft, buf->b_fname, TRUE, buf); @@ -2632,6 +2632,9 @@ load_dummy_buffer(fname) if (newbuf == NULL) return NULL; + /* Init the options. */ + buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP); + #ifdef FEAT_AUTOCMD /* set curwin/curbuf to buf and save a few things */ aucmd_prepbuf(&aco, newbuf); |