diff options
Diffstat (limited to 'src/nvim/quickfix.c')
| -rw-r--r-- | src/nvim/quickfix.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 0785fa703d..464d72eccb 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -2798,7 +2798,7 @@ static void qf_jump_goto_line(linenr_T qf_lnum, int qf_col, char_u qf_viscol,      // Move the cursor to the first line in the buffer      pos_T save_cursor = curwin->w_cursor;      curwin->w_cursor.lnum = 0; -    if (!do_search(NULL, '/', qf_pattern, (long)1, SEARCH_KEEP, NULL)) { +    if (!do_search(NULL, '/', '/', qf_pattern, (long)1, SEARCH_KEEP, NULL)) {        curwin->w_cursor = save_cursor;      }    } | 
